2020-09-28 20:19:10 +08:00
|
|
|
import type { App } from 'vue';
|
|
|
|
|
|
|
|
|
|
declare global {
|
2021-03-01 23:01:37 +08:00
|
|
|
declare const __DYNAMIC_IMPORT__: boolean;
|
2020-09-28 20:19:10 +08:00
|
|
|
declare interface Window {
|
2020-11-18 22:41:59 +08:00
|
|
|
// Global vue app instance
|
2020-09-28 20:19:10 +08:00
|
|
|
__APP__: App<Element>;
|
|
|
|
|
}
|
|
|
|
|
}
|