1
0

global.d.ts 524 B

1234567891011121314151617181920212223
  1. import type { RouteMeta as IRouteMeta } from '@vben-core/typings';
  2. import 'vue-router';
  3. declare module 'vue-router' {
  4. interface RouteMeta extends IRouteMeta {}
  5. }
  6. declare global {
  7. const __VBEN_ADMIN_METADATA__: {
  8. authorEmail: string;
  9. authorName: string;
  10. authorUrl: string;
  11. buildTime: string;
  12. dependencies: Record<string, string>;
  13. description: string;
  14. devDependencies: Record<string, string>;
  15. homepage: string;
  16. license: string;
  17. repositoryUrl: string;
  18. version: string;
  19. };
  20. }