angular-l10n
Version:
An Angular library to translate messages, dates and numbers
12 lines (11 loc) • 339 B
TypeScript
/**
* Provides the methods to check if Intl APIs are supported.
*/
export declare class IntlAPI {
static hasIntl(): boolean;
static hasDateTimeFormat(): boolean;
static hasTimezone(): boolean;
static hasNumberFormat(): boolean;
static hasCollator(): boolean;
static hasRelativeTimeFormat(): boolean;
}