@angular-devkit/build-angular
Version:
Angular Webpack Build Facade
17 lines (16 loc) • 593 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 { FileReplacement } from '../builders/browser/schema';
export declare class MissingFileReplacementException extends Error {
constructor(path: string);
}
export interface NormalizedFileReplacement {
replace: string;
with: string;
}
export declare function normalizeFileReplacements(fileReplacements: FileReplacement[], workspaceRoot: string): NormalizedFileReplacement[];