We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents acd0a66 + 3288a62 commit 5ce6d8cCopy full SHA for 5ce6d8c
1 file changed
tapable.d.ts
@@ -58,6 +58,7 @@ type ArgumentNames<T extends any[]> = FixedSizeArray<T["length"], string>;
58
declare class Hook<T, R, AdditionalOptions = UnsetAdditionalOptions> {
59
constructor(args?: ArgumentNames<AsArray<T>>, name?: string);
60
name: string | undefined;
61
+ taps: FullTap[];
62
intercept(interceptor: HookInterceptor<T, R, AdditionalOptions>): void;
63
isUsed(): boolean;
64
callAsync(...args: Append<AsArray<T>, Callback<Error, R>>): void;
0 commit comments