2026-05-05 02:52:40 +08:00
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
2026-05-05 15:09:49 +08:00
|
|
|
interface ImportMetaEnv {
|
|
|
|
|
readonly VITE_PORTAL_SITE_CODE?: string
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-05 02:52:40 +08:00
|
|
|
declare module '*.vue' {
|
|
|
|
|
import type { DefineComponent } from 'vue'
|
|
|
|
|
const component: DefineComponent<{}, {}, any>
|
|
|
|
|
export default component
|
|
|
|
|
}
|