Files
softclick-landing/src/env.d.ts

13 lines
280 B
TypeScript

/// <reference types="astro/client" />
interface ImportMetaEnv {
readonly PUBLIC_API_URL: string
readonly PUBLIC_GRAPHQL_URL: string
readonly PUBLIC_UPLOADS_BASE_URL: string
readonly BITRIX24_WEBHOOK_URL?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}