Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/jasmine

Package Overview
Dependencies
Maintainers
1
Versions
178
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/jasmine - npm Package Compare versions

Comparing version 2.5.48 to 2.5.49

8

jasmine/index.d.ts
// 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>.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc