UNPKG

@ifed/provider

Version:
13 lines (12 loc) 358 B
export interface IntlType { locale: string; getMessage: (id: string, defaultMessage: string) => string; } declare const zhCNIntl: IntlType; declare const enUSIntl: IntlType; declare const intlMap: { 'zh-CN': IntlType; 'en-US': IntlType; }; declare const intlMapKeys: string[]; export { enUSIntl, zhCNIntl, intlMap, intlMapKeys };