UNPKG

312 BTypeScriptView Raw
1import { Plugin } from "webpack";
2
3export = happypack;
4
5declare namespace happypack {
6 interface PluginOptions {
7 id?: string | undefined;
8 threads?: number | undefined;
9 loaders: any;
10 }
11}
12
13declare class happypack extends Plugin {
14 constructor(options: happypack.PluginOptions);
15}