mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 优化类型 (#231)
This commit is contained in:
parent
e32c8d9c52
commit
cda3196e71
18
packages/fes-plugin-access/types.d.ts
vendored
18
packages/fes-plugin-access/types.d.ts
vendored
@ -1,12 +1,12 @@
|
|||||||
import { Router, RouteLocationNormalized, NavigationGuardNext, NavigationGuard } from 'vue-router';
|
import type { NavigationGuard, NavigationGuardNext, RouteLocationNormalized, Router } from 'vue-router';
|
||||||
import { Ref } from 'vue';
|
import type { Ref } from 'vue';
|
||||||
|
|
||||||
export const access: {
|
export const access: {
|
||||||
hasAccess(accessId: string | number): Promise<boolean>;
|
hasAccess: (accessId: string | number) => Promise<boolean>;
|
||||||
isDataReady(): boolean;
|
isDataReady: () => boolean;
|
||||||
setRole(roleId: string | Promise<string>): void;
|
setRole: (roleId: string | Promise<string>) => void;
|
||||||
setAccess(accessIds: Array<string | number> | Promise<Array<string | number>>): void;
|
setAccess: (accessIds: Array<string | number> | Promise<Array<string | number>>) => void;
|
||||||
getAccess(): string[];
|
getAccess: () => string[];
|
||||||
};
|
};
|
||||||
|
|
||||||
export function useAccess(accessId: string | number): Ref<boolean>;
|
export function useAccess(accessId: string | number): Ref<boolean>;
|
||||||
@ -26,8 +26,8 @@ declare module '@fesjs/fes' {
|
|||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
access?:
|
access?:
|
||||||
| {
|
| {
|
||||||
rules: Record<string, []>;
|
rules: Record<string, []>;
|
||||||
}
|
}
|
||||||
| false;
|
| false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
10
packages/fes-plugin-enums/types.d.ts
vendored
10
packages/fes-plugin-enums/types.d.ts
vendored
@ -7,11 +7,11 @@ interface EnumExtend {
|
|||||||
}
|
}
|
||||||
|
|
||||||
interface EnumApi {
|
interface EnumApi {
|
||||||
get(name: string, key?: string, extend?: EnumExtend): any;
|
get: (name: string, key?: string, extend?: EnumExtend) => any;
|
||||||
push(name: string, _enum?: [] | object, option?: { keyName: string; valueName: string }): any;
|
push: (name: string, _enum?: [] | object, option?: { keyName: string; valueName: string }) => any;
|
||||||
remove(name: string): void;
|
remove: (name: string) => void;
|
||||||
concat(name: string, _enum: [] | object, option?: { keyName: string; valueName: string; before: boolean; extend: EnumExtend }): any;
|
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;
|
convert: (name: string, _enum?: [] | object, option?: { keyName: string; valueName: string }) => any;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const enums: EnumApi;
|
export const enums: EnumApi;
|
||||||
|
18
packages/fes-plugin-locale/types.d.ts
vendored
18
packages/fes-plugin-locale/types.d.ts
vendored
@ -1,9 +1,9 @@
|
|||||||
export { useI18n } from 'vue-i18n'
|
export { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
export const locale: {
|
export const locale: {
|
||||||
setLocale({ locale }: { locale: string }): void;
|
setLocale: ({ locale }: { locale: string }) => void;
|
||||||
addLocale({ locale, messages }: { locale: string; messages: object }): void;
|
addLocale: ({ locale, messages }: { locale: string; messages: object }) => void;
|
||||||
getAllLocales(): string[];
|
getAllLocales: () => string[];
|
||||||
messages: Record<string, object>;
|
messages: Record<string, object>;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -11,11 +11,11 @@ declare module '@fesjs/fes' {
|
|||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
locale?:
|
locale?:
|
||||||
| {
|
| {
|
||||||
locale: string;
|
locale: string;
|
||||||
fallbackLocale: string;
|
fallbackLocale: string;
|
||||||
baseNavigator: boolean;
|
baseNavigator: boolean;
|
||||||
legacy: boolean;
|
legacy: boolean;
|
||||||
}
|
}
|
||||||
| false;
|
| false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user