| | |
| | | /* |
| | | * @Description: file content |
| | | * @Author: Ben Lin |
| | | * @version: |
| | | * @Date: 2024-06-18 15:09:48 |
| | | * @LastEditors: Ben Lin |
| | | * @LastEditTime: 2024-07-19 17:09:40 |
| | | */ |
| | | import type { |
| | | ComponentRenderProxy, |
| | | VNode, |
| | |
| | | // // Global vue app instance |
| | | // __APP__: App<Element>; |
| | | // } |
| | | |
| | | // fix FullScreen type error |
| | | interface Document { |
| | | mozFullScreenElement?: Element; |
| | | msFullscreenElement?: Element; |
| | | webkitFullscreenElement?: Element; |
| | | } |
| | | |
| | | // vue |
| | | declare type PropType<T> = VuePropType<T>; |
| | |
| | | VITE_USE_MOCK: boolean; |
| | | VITE_PUBLIC_PATH: string; |
| | | VITE_GLOB_APP_TITLE: string; |
| | | VITE_GLOB_APP_TYPE: string; |
| | | VITE_BUILD_COMPRESS: 'gzip' | 'brotli' | 'none'; |
| | | } |
| | | |