Revelav3/.astro/astro/env.d.ts
MotorTruck1221 06d02c42f1
.
2025-01-15 00:03:51 -07:00

12 lines
246 B
TypeScript

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