Files
5chan/src/env.d.ts
T
2025-05-22 17:42:04 +02:00

10 lines
176 B
TypeScript

/// <reference types="vite/client" />
declare interface ImportMetaEnv {
readonly VITE_COMMIT_REF: string;
}
declare interface ImportMeta {
readonly env: ImportMetaEnv;
}