@angular-devkit/build-angular
Version:
Angular Webpack Build Facade
15 lines (14 loc) • 506 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 { ScriptElement, StyleElement } from '../builders/browser/schema';
export type EntryPointsType = [name: string, isModule: boolean];
export declare function generateEntryPoints(options: {
styles: StyleElement[];
scripts: ScriptElement[];
isHMREnabled?: boolean;
}): EntryPointsType[];