mirror of
https://github.com/get-drexa/drive.git
synced 2026-02-02 17:31:16 +00:00
14 lines
189 B
TypeScript
14 lines
189 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare global {
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
}
|
|
|
|
export {}
|