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 | */
|
8 | import { TransformJavascriptOutput } from '../helpers/transform-javascript';
|
9 | export 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 | }
|
19 | export declare function buildOptimizer(options: BuildOptimizerOptions): TransformJavascriptOutput;
|