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 { InjectionToken } from '../di/injection_token';
9
/**
10
 * @experimental i18n support is experimental.
11
 */
12
export declare const LOCALE_ID: InjectionToken<string>;
13
/**
14
 * @experimental i18n support is experimental.
15
 */
16
export declare const TRANSLATIONS: InjectionToken<string>;
17
/**
18
 * @experimental i18n support is experimental.
19
 */
20
export declare const TRANSLATIONS_FORMAT: InjectionToken<string>;
21
/**
22
 * @experimental i18n support is experimental.
23
 */
24
export declare enum MissingTranslationStrategy {
25
    Error = 0,
26
    Warning = 1,
27
    Ignore = 2,
28
}
    (1-1/1)