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

11 lines
225 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;
}
declare interface ImportMeta {
readonly env: ImportMetaEnv;
}