26 lines
555 B
TypeScript
26 lines
555 B
TypeScript
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;
|
|
};
|
|
// }
|
|
}
|