@types/jasmine
Advanced tools
Comparing version 3.10.8 to 3.10.9
@@ -233,3 +233,7 @@ // Type definitions for Jasmine 3.10 | ||
? ReadonlyArray<string> | { [methodName: string]: any } | ||
: ReadonlyArray<keyof T> | { [P in keyof T]?: T[P] extends Func ? ReturnType<T[P]> : any }; | ||
: (ReadonlyArray<keyof T> | | ||
{ [P in keyof T]?: | ||
// Value should be the return type (unless this is a method on Object.prototype, since all object literals contain those methods) | ||
T[P] extends Func ? (ReturnType<T[P]> | (P extends keyof Object ? Object[P] : never)) : any | ||
}); | ||
@@ -236,0 +240,0 @@ type SpyObjPropertyNames<T = undefined> = T extends undefined |
{ | ||
"name": "@types/jasmine", | ||
"version": "3.10.8", | ||
"version": "3.10.9", | ||
"description": "TypeScript definitions for Jasmine", | ||
@@ -93,4 +93,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jasmine", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "e0f24357563d226d35d92604c9c10b837cd4003850a5fba877737b92eb494ab3", | ||
"typesPublisherContentHash": "5533852197926580cdc3e93f82b7ebebffb6d3aeddf0cd8d02882dc2a0e266d2", | ||
"typeScriptVersion": "4.3" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Thu, 25 May 2023 20:34:16 GMT | ||
* Last updated: Fri, 16 Jun 2023 13:02:52 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: `afterAll`, `afterEach`, `beforeAll`, `beforeEach`, `describe`, `expect`, `expectAsync`, `fail`, `fdescribe`, `fit`, `it`, `jasmine`, `pending`, `setSpecProperty`, `setSuiteProperty`, `spyOn`, `spyOnAllFunctions`, `spyOnProperty`, `xdescribe`, `xit` |
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
59884
1262