2016-11-15 13:57:25 -08:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. 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.io/license
|
|
|
|
*/
|
|
|
|
|
2017-04-13 09:17:37 +02:00
|
|
|
import {MissingTranslationStrategy} from '@angular/core';
|
|
|
|
|
2016-11-15 13:57:25 -08:00
|
|
|
export interface AotCompilerOptions {
|
|
|
|
locale?: string;
|
|
|
|
i18nFormat?: string;
|
|
|
|
translations?: string;
|
2017-04-13 09:17:37 +02:00
|
|
|
missingTranslation?: MissingTranslationStrategy;
|
2017-01-10 19:07:03 -08:00
|
|
|
enableLegacyTemplate?: boolean;
|
2016-11-15 13:57:25 -08:00
|
|
|
}
|