8 lines
112 B
TypeScript
8 lines
112 B
TypeScript
|
|
import type { App } from 'vue';
|
||
|
|
|
||
|
|
declare global {
|
||
|
|
declare interface Window {
|
||
|
|
__APP__: App<Element>;
|
||
|
|
}
|
||
|
|
}
|