Revelav3/.astro/astro/env.d.ts
2024-11-04 23:32:40 -07:00

11 lines
219 B
TypeScript

declare module 'astro:env/client' {
export const VERSION: string;
export const MARKETPLACE_ENABLED: boolean;
}
declare module 'astro:env/server' {
export const getSecret: (key: string) => string | undefined;
}