mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
22 lines
561 B
TypeScript
22 lines
561 B
TypeScript
export { useI18n } from 'vue-i18n'
|
|
|
|
export const locale: {
|
|
setLocale({ locale }: { locale: string }): void;
|
|
addLocale({ locale, messages }: { locale: string; messages: object }): void;
|
|
getAllLocales(): string[];
|
|
messages: Record<string, object>;
|
|
};
|
|
|
|
declare module '@fesjs/fes' {
|
|
interface PluginBuildConfig {
|
|
locale?:
|
|
| {
|
|
locale: string;
|
|
fallbackLocale: string;
|
|
baseNavigator: boolean;
|
|
legacy: boolean;
|
|
}
|
|
| false;
|
|
}
|
|
}
|