@types/tapable
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -250,3 +250,3 @@ // Type definitions for tapable v1.0.0 | ||
taps: any[]; | ||
interceptors: any[]; | ||
interceptors: HookInterceptor[]; | ||
call: (arg1?: T1, arg2?: T2, arg3?: T3, ...args: any[]) => any; | ||
@@ -275,8 +275,7 @@ promise:(arg1?: T1, arg2?: T2, arg3?: T3, ...args: any[]) => Promise<any>; | ||
export class HookInterceptor { | ||
call: (...args: any[]) => void; | ||
loop: (...args: any[]) => void; | ||
tap: (tap: Tap) => void; | ||
register: (tap: Tap) => Tap | undefined; | ||
context: boolean; | ||
name: string; | ||
call?: (...args: any[]) => void; | ||
loop?: (...args: any[]) => void; | ||
tap?: (tap: Tap) => void; | ||
register?: (tap: Tap) => Tap | undefined; | ||
context?: boolean; | ||
} | ||
@@ -283,0 +282,0 @@ |
{ | ||
"name": "@types/tapable", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "TypeScript definitions for tapable", | ||
@@ -16,8 +16,8 @@ "license": "MIT", | ||
"type": "git", | ||
"url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
}, | ||
"scripts": {}, | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "87260b7dd8eb3a6cac1f9d3d032580e48789a47cc92c6d5129f629fa9439ae4a", | ||
"typesPublisherContentHash": "0774161482f354666a14290a1f39216f930f341d2857b6031b5754b24d4da75a", | ||
"typeScriptVersion": "2.3" | ||
} |
@@ -8,6 +8,6 @@ # Installation | ||
# Details | ||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tapable | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tapable | ||
Additional Details | ||
* Last updated: Sat, 14 Apr 2018 23:11:10 GMT | ||
* Last updated: Sat, 30 Jun 2018 02:47:51 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
Sorry, the diff of this file is not supported yet
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
15195
270