mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix(plugin-access): 补充 RuntimeConfig['access'] 字段 (#205)
This commit is contained in:
parent
74fc28bedc
commit
7739d40a7b
9
packages/fes-plugin-access/types.d.ts
vendored
9
packages/fes-plugin-access/types.d.ts
vendored
@ -1,4 +1,4 @@
|
||||
import { Router, RouteLocationNormalized, NavigationGuardNext, NavigationGuardReturn, NavigationGuard } from 'vue-router';
|
||||
import { Router, RouteLocationNormalized, NavigationGuardNext, NavigationGuard } from 'vue-router';
|
||||
import { Ref } from 'vue';
|
||||
|
||||
export const access: {
|
||||
@ -19,7 +19,7 @@ interface CustomNavigationGuardOption {
|
||||
}
|
||||
|
||||
interface CustomNavigationGuard {
|
||||
(option: CustomNavigationGuardOption): NavigationGuardReturn | Promise<NavigationGuardReturn>;
|
||||
(option: CustomNavigationGuardOption): ReturnType<NavigationGuard>;
|
||||
}
|
||||
|
||||
declare module '@fesjs/fes' {
|
||||
@ -33,8 +33,9 @@ declare module '@fesjs/fes' {
|
||||
|
||||
interface PluginRuntimeConfig {
|
||||
access?: {
|
||||
noFoundHandler: NavigationGuard;
|
||||
unAccessHandler: CustomNavigationGuard;
|
||||
noFoundHandler?: CustomNavigationGuard;
|
||||
unAccessHandler?: CustomNavigationGuard;
|
||||
ignoreAccess?: string[];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user