15 lines
397 B
TypeScript
15 lines
397 B
TypeScript
/// <reference path="../.astro/types.d.ts" />
|
|
/// <reference types="astro/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly PUBLIC_PAYLOAD_URL: string;
|
|
readonly PUBLIC_TYPESENSE_HOST: string;
|
|
readonly PUBLIC_TYPESENSE_PORT: string;
|
|
readonly PUBLIC_TYPESENSE_PROTOCOL: string;
|
|
readonly PUBLIC_TYPESENSE_SEARCH_ONLY_API_KEY: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|