Files
365devnet/src/env.d.ts
becarta 93a8763e04
Some checks failed
GitHub Actions / check (push) Has been cancelled
GitHub Actions / build (18) (push) Has been cancelled
GitHub Actions / build (20) (push) Has been cancelled
GitHub Actions / build (22) (push) Has been cancelled
Added a new development page where it shows the status of the site
2025-05-01 20:37:33 +02:00

14 lines
371 B
TypeScript

// eslint-disable-next-line @typescript-eslint/triple-slash-reference
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
/// <reference types="vite/client" />
/// <reference types="../vendor/integration/types.d.ts" />
interface ImportMetaEnv {
readonly GITLAB_TOKEN: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}