gohttpdUi/types/env.d.ts

15 lines
357 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'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
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
}
}