mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix(plugin-access): 补充 RuntimeConfig['access'] 字段 (#205)
This commit is contained in:
parent
55e87e5d68
commit
61fa8be45e
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