six-degs-of-f1/src/env.d.ts

13 lines
274 B
TypeScript
Raw Normal View History

/// <reference path="../.astro/types.d.ts" />
2024-03-07 20:40:03 +01:00
/// <reference types="astro/client" />
interface ImportMetaEnv {
readonly NEO4J_DB_URI: string;
readonly NEO4J_USERNAME: string;
readonly NEO4J_PASSWORD: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}