15 lines
267 B
TypeScript
15 lines
267 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ViteTypeOptions {
|
|
strictImportMetaEnv: unknown;
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_NG_CLIENT_ID: string;
|
|
readonly VITE_NG_CLIENT_SECRET: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|