mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 10:21:31 +03:00
9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
interface ImportMetaEnv extends Readonly<Record<string, string | boolean | undefined>> {
|
|
readonly VITE_LAST_WIPE: string;
|
|
readonly VITE_STORAGE_VERSION: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|