Blame view

src/types/window.d.ts 168 Bytes
陈文彬 authored
1
2
3
4
import type { App } from 'vue';

declare global {
  declare interface Window {
vben authored
5
    // Global vue app instance
陈文彬 authored
6
    __APP__: App<Element>;
vben authored
7
    __VERSION__: string;
陈文彬 authored
8
9
  }
}