bizroad-webpack-plugin
Version:
webpack plugin for biz road
15 lines (14 loc) • 420 B
TypeScript
/**
* type 导入
*/
import { Compiler } from 'webpack/types';
import { IBizroadOptions, queueFormType } from './types';
declare class BizroadWebpackPlugin {
options: IBizroadOptions;
entryFilesPath: string[];
links: queueFormType;
constructor(options: IBizroadOptions);
apply(compiler: Compiler): void;
_handleEntryFilesPath(entryFilepath: string): boolean;
}
export { BizroadWebpackPlugin };