You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
524 B
24 lines
524 B
import type { RouteMeta as IRouteMeta } from '@vben-core/typings';
|
|
|
|
import 'vue-router';
|
|
|
|
declare module 'vue-router' {
|
|
interface RouteMeta extends IRouteMeta {}
|
|
}
|
|
|
|
declare global {
|
|
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;
|
|
};
|
|
}
|