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

10 lines
214 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: {
keepAlive: boolean;
refreshRedirect: string;
2021-12-21 10:54:51 +08:00
dynamicLevel: string;
2021-12-14 10:51:07 +08:00
};
}