BuildEventsHook.d.ts 241 B

12345678
  1. export class BuildEventsHook {
  2. constructor(name: any, fn: any, stage?: string);
  3. name: any;
  4. stage: string;
  5. function: any;
  6. apply(compiler: any): void;
  7. }
  8. export function createBuildEventsHook(options: any): BuildEventsHook;