13 lines
314 B
TypeScript
13 lines
314 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
export interface ImportMetaEnv {
|
|
readonly VITE_FIREBASE_CONFIG: string;
|
|
readonly VITE_GRAPHQL_ENDPOINT: string;
|
|
readonly VITE_FIREBASE_CONFIG_TEST: string;
|
|
readonly VITE_GRAPHQL_ENDPOINT_TEST: string;
|
|
}
|
|
|
|
export interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|