UNPKG

486 BTypeScriptView Raw
1import { ErrorCode } from 'intl-messageformat';
2/**
3 * An error that indicates a required Intl API was not available
4 * at runtime. This is generally resolved by polyfilling the missing API.
5 *
6 * @private
7 * @hide
8 */
9export declare const MISSING_INTL_API = ErrorCode.MISSING_INTL_API;
10/**
11 * An error type that indicates a translation that was looked up
12 * by a specific key was not found.
13 *
14 * @private
15 * @hide
16 */
17export declare const MISSING_TRANSLATION = "MISSING_TRANSLATION";