Some checks failed
CI / build-test (push) Has been cancelled
Reviewed-on: #3 Co-authored-by: jableader <jacobdunk@gmail.com> Co-committed-by: jableader <jacobdunk@gmail.com>
10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
/* Minimal ambient typing for optional import.meta.env usage in tooling */
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE_URL?: string
|
|
}
|
|
|
|
declare interface ImportMeta {
|
|
readonly env?: ImportMetaEnv
|
|
}
|
|
|
|
export {}
|