@ifed/provider
Version:
@ifed/provider
13 lines (12 loc) • 358 B
TypeScript
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 };