Skip to content

Commit f89abf1

Browse files
authored
Merge pull request #88 from webpack/types/map-any-key
Update type definitions to allow any type as HookMap key
2 parents 0d8613c + f7aed08 commit f89abf1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tapable.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,16 +79,16 @@ export class AsyncSeriesWaterfallHook<T extends any[]> extends AsyncHook<
7979
T[0]
8080
> {}
8181

82-
type HookFactory<H> = (key: string, hook?: H) => H;
82+
type HookFactory<H> = (key: any, hook?: H) => H;
8383

8484
interface HookMapInterceptor<H> {
8585
factory?: HookFactory<H>;
8686
}
8787

8888
export class HookMap<H> {
8989
constructor(factory: HookFactory<H>);
90-
get(key: string): H | undefined;
91-
for(key: string): H;
90+
get(key: any): H | undefined;
91+
for(key: any): H;
9292
intercept(interceptor: HookMapInterceptor<H>): void;
9393
}
9494

0 commit comments

Comments
 (0)