8 lines
278 B
TypeScript
8 lines
278 B
TypeScript
/// <reference path="../.astro/types.d.ts" />
|
|
/// <reference types="astro/client" />
|
|
interface ImportMetaEnv {
|
|
readonly CONTENTFUL_SPACE_ID: string;
|
|
readonly CONTENTFUL_DELIVERY_TOKEN: string;
|
|
readonly WEBHOOK_TOKEN: string;
|
|
readonly PLAUSIBLE_DOMAIN: string;
|
|
}
|