OMDSCloud/dictation_client/src/react-app-env.d.ts

14 lines
369 B
TypeScript

/* eslint-disable @typescript-eslint/naming-convention */
// 環境変数のコード補完
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_STAGE: string;
readonly VITE_B2C_CLIENTID: string;
readonly VITE_B2C_AUTHORITY: string;
readonly VITE_B2C_KNOWNAUTHORITIES: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}