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

10 lines
210 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;
realPath: string;
};
}