Files
5chan/src/env.d.ts
T

13 lines
306 B
TypeScript
Raw Normal View History

2025-05-22 17:42:04 +02:00
/// <reference types="vite/client" />
/// <reference types="vite-plugin-pwa/client" />
2025-05-22 17:42:04 +02:00
declare interface ImportMetaEnv {
readonly VITE_COMMIT_REF: string;
readonly VITE_APP_VERSION?: string;
readonly VITE_APP_DISTRIBUTION?: string;
2025-05-22 17:42:04 +02:00
}
declare interface ImportMeta {
readonly env: ImportMetaEnv;
}