13 lines
280 B
TypeScript
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
|
|
}
|