UNPKG

431 BTypeScriptView Raw
1/// <reference types="node" />
2import { DllBundlesPluginOptions } from './interfaces';
3export declare class DllBundlesPlugin {
4 private compiler;
5 private bundles;
6 private bundleControl;
7 private options;
8 constructor(options: DllBundlesPluginOptions);
9 apply(compiler: any): void;
10 run(next: (err?: Error) => any): void;
11 private setOptions(options);
12 static resolveFile(bundleName: string): string;
13}