11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
|
||
|
interface ImportMetaEnv {
|
||
|
readonly BUILT_AT: string;
|
||
|
readonly PACKAGE_VERSION: string;
|
||
|
}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv;
|
||
|
}
|