ember-intl
Version:
A internationalization toolbox for ambitious applications.
18 lines (17 loc) • 486 B
TypeScript
import { ErrorCode } from 'intl-messageformat';
/**
* An error that indicates a required Intl API was not available
* at runtime. This is generally resolved by polyfilling the missing API.
*
* @private
* @hide
*/
export declare const MISSING_INTL_API = ErrorCode.MISSING_INTL_API;
/**
* An error type that indicates a translation that was looked up
* by a specific key was not found.
*
* @private
* @hide
*/
export declare const MISSING_TRANSLATION = "MISSING_TRANSLATION";