UNPKG

647 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { TransformJavascriptOutput } from '../helpers/transform-javascript';
9export interface BuildOptimizerOptions {
10 content?: string;
11 originalFilePath?: string;
12 inputFilePath?: string;
13 outputFilePath?: string;
14 emitSourceMap?: boolean;
15 strict?: boolean;
16 isSideEffectFree?: boolean;
17 isAngularCoreFile?: boolean;
18}
19export declare function buildOptimizer(options: BuildOptimizerOptions): TransformJavascriptOutput;