mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
33 lines
799 B
TypeScript
33 lines
799 B
TypeScript
import EventHooksPlugin = require('event-hooks-webpack-plugin');
|
|
|
|
new EventHooksPlugin({});
|
|
new EventHooksPlugin({
|
|
done: () => {},
|
|
});
|
|
new EventHooksPlugin({
|
|
shouldEmit: () => {},
|
|
done: () => {},
|
|
additionalPass: () => {},
|
|
beforeRun: () => {},
|
|
run: () => {},
|
|
emit: () => {},
|
|
afterEmit: () => {},
|
|
thisCompilation: () => {},
|
|
compilation: () => {},
|
|
normalModuleFactory: () => {},
|
|
contextModuleFactory: () => {},
|
|
beforeCompile: () => {},
|
|
compile: () => {},
|
|
make: () => {},
|
|
afterCompile: () => {},
|
|
watchRun: () => {},
|
|
failed: () => {},
|
|
invalid: () => {},
|
|
watchClose: () => {},
|
|
environment: () => {},
|
|
afterEnvironment: () => {},
|
|
afterPlugins: () => {},
|
|
afterResolvers: () => {},
|
|
entryOption: () => {},
|
|
});
|