UNPKG

385 BTypeScriptView Raw
1import * as webpack from 'webpack';
2import { DependencyOptionsEx } from "./interfaces";
3export declare type AddDependency = (request: string | DependencyOptionsEx) => void;
4export declare class BaseIncludePlugin {
5 apply(compiler: webpack.Compiler): void;
6 parser(compilation: webpack.Compilation, parser: webpack.javascript.JavascriptParser, add: AddDependency): void;
7}