Files
wireguard-dashboard-admin/src/router/types.ts

10 lines
216 B
TypeScript
Raw Normal View History

2021-12-14 10:51:07 +08:00
import { RouteLocationNormalized } from "vue-router";
export interface toRouteType extends RouteLocationNormalized {
meta: {
2021-12-24 10:55:59 +08:00
keepAlive?: boolean;
2021-12-14 10:51:07 +08:00
refreshRedirect: string;
2021-12-24 10:55:59 +08:00
dynamicLevel?: string;
2021-12-14 10:51:07 +08:00
};
}