Files
geo/apps/admin-web/src/router/meta.d.ts
T

16 lines
275 B
TypeScript
Raw Normal View History

import "vue-router";
declare module "vue-router" {
interface RouteMeta {
title?: string;
description?: string;
titleKey?: string;
descriptionKey?: string;
requiresAuth?: boolean;
requiresKol?: boolean;
navKey?: string | null;
}
}
export {};