justin.deal/src/env.d.ts

14 lines
267 B
TypeScript
Raw Normal View History

/// <reference types="astro/client" />
/**
* Type definitions for environment variables
*/
interface ImportMetaEnv {
readonly PUBLIC_SITE_URL: string;
// Add other environment variables here as needed
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}