From cda3196e7169a002741f511cf5cb5a155f5c0a23 Mon Sep 17 00:00:00 2001 From: qlin Date: Mon, 19 Feb 2024 16:14:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=E7=B1=BB=E5=9E=8B=20(?= =?UTF-8?q?#231)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-access/types.d.ts | 18 +++++++++--------- packages/fes-plugin-enums/types.d.ts | 10 +++++----- packages/fes-plugin-locale/types.d.ts | 18 +++++++++--------- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/packages/fes-plugin-access/types.d.ts b/packages/fes-plugin-access/types.d.ts index 4e9cfb99..a1289fb7 100644 --- a/packages/fes-plugin-access/types.d.ts +++ b/packages/fes-plugin-access/types.d.ts @@ -1,12 +1,12 @@ -import { Router, RouteLocationNormalized, NavigationGuardNext, NavigationGuard } from 'vue-router'; -import { Ref } from 'vue'; +import type { NavigationGuard, NavigationGuardNext, RouteLocationNormalized, Router } from 'vue-router'; +import type { Ref } from 'vue'; export const access: { - hasAccess(accessId: string | number): Promise; - isDataReady(): boolean; - setRole(roleId: string | Promise): void; - setAccess(accessIds: Array | Promise>): void; - getAccess(): string[]; + hasAccess: (accessId: string | number) => Promise; + isDataReady: () => boolean; + setRole: (roleId: string | Promise) => void; + setAccess: (accessIds: Array | Promise>) => void; + getAccess: () => string[]; }; export function useAccess(accessId: string | number): Ref; @@ -26,8 +26,8 @@ declare module '@fesjs/fes' { interface PluginBuildConfig { access?: | { - rules: Record; - } + rules: Record; + } | false; } diff --git a/packages/fes-plugin-enums/types.d.ts b/packages/fes-plugin-enums/types.d.ts index d847b163..2612b50d 100644 --- a/packages/fes-plugin-enums/types.d.ts +++ b/packages/fes-plugin-enums/types.d.ts @@ -7,11 +7,11 @@ interface EnumExtend { } interface EnumApi { - get(name: string, key?: string, extend?: EnumExtend): any; - push(name: string, _enum?: [] | object, option?: { keyName: string; valueName: string }): any; - remove(name: string): void; - concat(name: string, _enum: [] | object, option?: { keyName: string; valueName: string; before: boolean; extend: EnumExtend }): any; - convert(name: string, _enum?: [] | object, option?: { keyName: string; valueName: string }): any; + get: (name: string, key?: string, extend?: EnumExtend) => any; + push: (name: string, _enum?: [] | object, option?: { keyName: string; valueName: string }) => any; + remove: (name: string) => void; + concat: (name: string, _enum: [] | object, option?: { keyName: string; valueName: string; before: boolean; extend: EnumExtend }) => any; + convert: (name: string, _enum?: [] | object, option?: { keyName: string; valueName: string }) => any; } export const enums: EnumApi; diff --git a/packages/fes-plugin-locale/types.d.ts b/packages/fes-plugin-locale/types.d.ts index 5de90957..b72dc316 100644 --- a/packages/fes-plugin-locale/types.d.ts +++ b/packages/fes-plugin-locale/types.d.ts @@ -1,9 +1,9 @@ -export { useI18n } from 'vue-i18n' +export { useI18n } from 'vue-i18n'; export const locale: { - setLocale({ locale }: { locale: string }): void; - addLocale({ locale, messages }: { locale: string; messages: object }): void; - getAllLocales(): string[]; + setLocale: ({ locale }: { locale: string }) => void; + addLocale: ({ locale, messages }: { locale: string; messages: object }) => void; + getAllLocales: () => string[]; messages: Record; }; @@ -11,11 +11,11 @@ declare module '@fesjs/fes' { interface PluginBuildConfig { locale?: | { - locale: string; - fallbackLocale: string; - baseNavigator: boolean; - legacy: boolean; - } + locale: string; + fallbackLocale: string; + baseNavigator: boolean; + legacy: boolean; + } | false; } }