10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
|
|
import { RouteLocationNormalized } from "vue-router";
|
||
|
|
|
||
|
|
export interface toRouteType extends RouteLocationNormalized {
|
||
|
|
meta: {
|
||
|
|
keepAlive: boolean;
|
||
|
|
refreshRedirect: string;
|
||
|
|
realPath: string;
|
||
|
|
};
|
||
|
|
}
|