@types/jasmine
Advanced tools
Comparing version 2.5.35 to 2.5.36
@@ -13,4 +13,7 @@ // Type definitions for Jasmine 2.5 | ||
declare function it(expectation: string, assertion?: () => void, timeout?: number): void; | ||
declare function it(expectation: string, assertion?: (done: DoneFn) => void, timeout?: number): void; | ||
declare function fit(expectation: string, assertion?: () => void, timeout?: number): void; | ||
declare function fit(expectation: string, assertion?: (done: DoneFn) => void, timeout?: number): void; | ||
declare function xit(expectation: string, assertion?: () => void, timeout?: number): void; | ||
declare function xit(expectation: string, assertion?: (done: DoneFn) => void, timeout?: number): void; | ||
@@ -21,6 +24,10 @@ | ||
declare function beforeEach(action: () => void, timeout?: number): void; | ||
declare function beforeEach(action: (done: DoneFn) => void, timeout?: number): void; | ||
declare function afterEach(action: () => void, timeout?: number): void; | ||
declare function afterEach(action: (done: DoneFn) => void, timeout?: number): void; | ||
declare function beforeAll(action: () => void, timeout?: number): void; | ||
declare function beforeAll(action: (done: DoneFn) => void, timeout?: number): void; | ||
declare function afterAll(action: () => void, timeout?: number): void; | ||
declare function afterAll(action: (done: DoneFn) => void, timeout?: number): void; | ||
@@ -27,0 +34,0 @@ |
{ | ||
"name": "@types/jasmine", | ||
"version": "2.5.35", | ||
"version": "2.5.36", | ||
"description": "TypeScript definitions for Jasmine 2.5", | ||
@@ -16,3 +16,3 @@ "license": "MIT", | ||
"typings": "index.d.ts", | ||
"typesPublisherContentHash": "342ad787ae1d9085f9cb2f352460449c601a7fbda833a19bb87aa2787dbc9ec3" | ||
"typesPublisherContentHash": "d2a77e4310c9932a29263b22c9dad935fa4da77f10e09b7e7d131e69ffffd714" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Wed, 05 Oct 2016 20:53:34 GMT | ||
* Last updated: Wed, 26 Oct 2016 19:23:27 GMT | ||
* File structure: Global | ||
@@ -14,0 +14,0 @@ * Library Dependencies: none |
@@ -39,3 +39,3 @@ { | ||
"hasPackageJson": false, | ||
"contentHash": "342ad787ae1d9085f9cb2f352460449c601a7fbda833a19bb87aa2787dbc9ec3" | ||
"contentHash": "d2a77e4310c9932a29263b22c9dad935fa4da77f10e09b7e7d131e69ffffd714" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22367
484