1 | import { BaseIncludePlugin, AddDependency } from "./BaseIncludePlugin";
|
2 | import * as webpack from 'webpack';
|
3 | export declare type Convention = (filename: string) => string;
|
4 | export declare class ConventionDependenciesPlugin extends BaseIncludePlugin {
|
5 | private glob;
|
6 | conventions: Convention[];
|
7 | |
8 |
|
9 |
|
10 | constructor(glob: string, conventions?: string | Convention | (string | Convention)[]);
|
11 | parser(compilation: webpack.Compilation, parser: webpack.javascript.JavascriptParser, addDependency: AddDependency): void;
|
12 | }
|