@types/jasmine
Advanced tools
Comparing version 2.5.48 to 2.5.49
// Type definitions for Jasmine 2.5.2 | ||
// Project: http://jasmine.github.io/ | ||
// Definitions by: Boris Yankov <https://github.com/borisyankov/>, Theodore Brown <https://github.com/theodorejb>, David Pärsson <https://github.com/davidparsson/> | ||
// Definitions by: Boris Yankov <https://github.com/borisyankov/>, Theodore Brown <https://github.com/theodorejb>, David Pärsson <https://github.com/davidparsson/>, Gabe Moothart <https://github.com/gmoothart> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -62,3 +62,3 @@ // TypeScript Version: 2.1 | ||
function createSpyObj(baseName: string, methodNames: any[]): any; | ||
function createSpyObj<T>(baseName: string, methodNames: any[]): T; | ||
function createSpyObj<T>(baseName: string, methodNames: any[]): SpyObj<T>; | ||
@@ -522,2 +522,6 @@ function createSpyObj(baseName: string, methodNames: any): any; | ||
type SpyObj<T> = T & { | ||
[k in keyof T]: Spy; | ||
} | ||
interface SpyAnd { | ||
@@ -524,0 +528,0 @@ /** By chaining the spy with and.callThrough, the spy will still track all calls to it but in addition it will delegate to the actual implementation. */ |
{ | ||
"name": "@types/jasmine", | ||
"version": "2.5.48", | ||
"version": "2.5.49", | ||
"description": "TypeScript definitions for Jasmine", | ||
@@ -18,2 +18,6 @@ "license": "MIT", | ||
"url": "https://github.com/davidparsson/" | ||
}, | ||
{ | ||
"name": "Gabe Moothart", | ||
"url": "https://github.com/gmoothart" | ||
} | ||
@@ -29,4 +33,4 @@ ], | ||
"peerDependencies": {}, | ||
"typesPublisherContentHash": "30a73ba72b31db597819669a165f1bb0f96fe73c57372500f3e35fd591f25c36", | ||
"typesPublisherContentHash": "660dfd3954dff5785ed76be45b50b99780ddcfaf78a8f2a9eadd438a2df90d67", | ||
"typeScriptVersion": "2.1" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Thu, 01 Jun 2017 05:11:21 GMT | ||
* Last updated: Fri, 02 Jun 2017 01:33:57 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,2 @@ * Global values: afterAll, afterEach, beforeAll, beforeEach, describe, expect, fail, fdescribe, fit, it, jasmine, pending, runs, spyOn, spyOnProperty, waits, waitsFor, xdescribe, xit | ||
# Credits | ||
These definitions were written by Boris Yankov <https://github.com/borisyankov/>, Theodore Brown <https://github.com/theodorejb>, David Pärsson <https://github.com/davidparsson/>. | ||
These definitions were written by Boris Yankov <https://github.com/borisyankov/>, Theodore Brown <https://github.com/theodorejb>, David Pärsson <https://github.com/davidparsson/>, Gabe Moothart <https://github.com/gmoothart>. |
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
24419
484