mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { Router, RouteLocationNormalized, NavigationGuardNext, NavigationGuard } from 'vue-router';
|
|
import { Ref } from 'vue';
|
|
|
|
export const access: {
|
|
hasAccess(accessId: string | number): Promise<boolean>;
|
|
isDataReady(): boolean;
|
|
setRole(roleId: string | Promise<string>): void;
|
|
setAccess(accessIds: Array<string | number> | Promise<Array<string | number>>): void;
|
|
getAccess(): string[];
|
|
};
|
|
|
|
export function useAccess(accessId: string | number): Ref<boolean>;
|
|
|
|
interface CustomNavigationGuardOption {
|
|
router: Router;
|
|
to: RouteLocationNormalized;
|
|
from: RouteLocationNormalized;
|
|
next: NavigationGuardNext;
|
|
}
|
|
|
|
interface CustomNavigationGuard {
|
|
(option: CustomNavigationGuardOption): ReturnType<NavigationGuard>;
|
|
}
|
|
|
|
declare module '@fesjs/fes' {
|
|
interface PluginBuildConfig {
|
|
access?:
|
|
| {
|
|
rules: Record<string, []>;
|
|
}
|
|
| false;
|
|
}
|
|
|
|
interface PluginRuntimeConfig {
|
|
access?: {
|
|
noFoundHandler?: CustomNavigationGuard;
|
|
unAccessHandler?: CustomNavigationGuard;
|
|
ignoreAccess?: string[];
|
|
};
|
|
}
|
|
}
|