cwait/packages/ui/vite-env.d.ts
2025-04-02 17:41:00 +03:00

10 lines
178 B
TypeScript

/// <reference types="vite/client" />
type ImportMetaEnv = {
readonly [key: `VITE_${string}`]: string | undefined;
};
interface ImportMeta {
readonly env: ImportMetaEnv;
}