mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
* fix: 优化类型提示 * fix: 添加 enums 接口类型声明 * feat: 配置插件api提示 Co-authored-by: wanchun <445436867@qq.com>
24 lines
605 B
TypeScript
24 lines
605 B
TypeScript
import '@fesjs/fes';
|
|
|
|
declare module '@fesjs/fes' {
|
|
interface PluginBuildConfig {
|
|
locale?:
|
|
| {
|
|
locale: string;
|
|
fallbackLocale: string;
|
|
baseNavigator: boolean;
|
|
legacy: boolean;
|
|
}
|
|
| false;
|
|
}
|
|
|
|
// export * 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>;
|
|
};
|
|
}
|