Files
flights_web_raw/node_modules/ngx-translate-messageformat-compiler/lib/message-format-config.d.ts
T

13 lines
455 B
TypeScript

import { InjectionToken } from "@angular/core";
export declare const MESSAGE_FORMAT_CONFIG: InjectionToken<MessageFormatConfig>;
export interface MessageFormatConfig {
biDiSupport?: boolean;
formatters?: {
[name: string]: (val: any, lc: string, arg?: string) => string;
};
locales?: string | string[];
strictNumberSign?: boolean;
disablePluralKeyChecks?: boolean;
}
export declare const defaultConfig: MessageFormatConfig;