11 lines
184 B
TypeScript
11 lines
184 B
TypeScript
![]() |
/// <reference types="vite/client" />
|
||
|
|
||
|
interface ImportMetaEnv {
|
||
|
readonly VITE_NAME: string;
|
||
|
readonly VITE_TIMEOUT: number;
|
||
|
}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv;
|
||
|
}
|