mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-08 15:41:08 +08:00
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;
|
|
};
|
|
// }
|
|
}
|