19 lines
411 B
TypeScript
19 lines
411 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
// Wrangler/Vite wasm module imports
|
|
declare module '*.wasm?module' {
|
|
const module: Uint8Array
|
|
export default module
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_TLDRAW_WORKER_URL: string
|
|
readonly VITE_GOOGLE_MAPS_API_KEY: string
|
|
readonly VITE_GOOGLE_CLIENT_ID: string
|
|
readonly VITE_DAILY_DOMAIN: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|