gohttpdUi/types/env.d.ts

15 lines
263 B
TypeScript
Raw Normal View History

2021-10-17 11:46:40 +08:00
/// <reference types="vite/client" />
2021-10-10 09:59:52 +08:00
declare module '*.vue' {
import { DefineComponent } from 'vue'
2024-07-18 16:56:42 +08:00
2021-10-10 09:59:52 +08:00
const component: DefineComponent<{}, {}, any>
export default component
}
2021-12-07 17:20:19 +08:00
declare global {
interface ImportMeta {
2022-03-01 14:37:15 +08:00
readonly env: ImportMetaEnv
2021-12-07 17:20:19 +08:00
}
}