Project

General

Profile

1
/**
2
 * @license
3
 * Copyright Google Inc. 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 { MissingTranslationStrategy } from '@angular/core';
9
export interface AotCompilerOptions {
10
    locale?: string;
11
    i18nFormat?: string;
12
    translations?: string;
13
    missingTranslation?: MissingTranslationStrategy;
14
    enableLegacyTemplate?: boolean;
15
    enableSummariesForJit?: boolean;
16
    preserveWhitespaces?: boolean;
17
}
(7-7/22)