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

10 lines
176 B
TypeScript
Raw Normal View History

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