UNPKG

@angular/build

Version:

Official build system for Angular

13 lines (12 loc) 601 B
/** * @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 type { OutputFile } from 'esbuild'; import type { BuildOutputFile } from './esbuild-definitions'; import { BuildOutputFileType } from './esbuild-definitions'; export declare function createOutputFile(path: string, data: string | Uint8Array, type: BuildOutputFileType): BuildOutputFile; export declare function convertOutputFile(file: OutputFile, type: BuildOutputFileType): BuildOutputFile;