@angular-devkit/build-angular
Version:
Angular Webpack Build Facade
19 lines (18 loc) • 536 B
TypeScript
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { Compiler } from 'webpack';
import { HashFormat } from '../utils/helpers';
export interface RemoveHashPluginOptions {
chunkNames: string[];
hashFormat: HashFormat;
}
export declare class RemoveHashPlugin {
private options;
constructor(options: RemoveHashPluginOptions);
apply(compiler: Compiler): void;
}