12 lines
203 B
TypeScript
12 lines
203 B
TypeScript
// Path: Frontend/src/global.d.ts
|
|
|
|
/// <reference types="@solidjs/start/env" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE_URL?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|