mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 20:02:40 +08:00
11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
import * as webpack from 'webpack';
|
|
|
|
declare module 'webpack' {
|
|
export class NamedChunksPlugin {
|
|
constructor(nameResolver: (chunk: any) => string | null);
|
|
}
|
|
export class HashedModuleIdsPlugin {
|
|
constructor();
|
|
}
|
|
}
|