12345678910111213141516171819202122232425 |
- import type { RouteMeta as IRouteMeta } from '@vben-core/typings';
- import 'vue-router';
- declare module 'vue-router' {
- interface RouteMeta extends IRouteMeta {}
- }
- declare global {
- // interface Window {
- const __VBEN_ADMIN_METADATA__: {
- authorEmail: string;
- authorName: string;
- authorUrl: string;
- buildTime: string;
- dependencies: Record<string, string>;
- description: string;
- devDependencies: Record<string, string>;
- homepage: string;
- license: string;
- repositoryUrl: string;
- version: string;
- };
- // }
- }
|