Files
drive/apps/drive-web/src/vite-env.d.ts

14 lines
189 B
TypeScript
Raw Normal View History

/// <reference types="vite/client" />
declare global {
interface ImportMetaEnv {
readonly VITE_API_URL: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
}
export {}