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