Kick off (#1)

* Kick off
* Update LICENSE copyright
This commit is contained in:
2026-04-11 13:22:36 +02:00
committed by GitHub
parent 1f1e74c9f8
commit 3882a1941a
76 changed files with 17154 additions and 1 deletions

11
status-page/src/env.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
// Env bindings available via `import { env } from 'cloudflare:workers'`.
// Extends the Cloudflare.Env declared in @cloudflare/workers-types.
// Must match the D1 binding declared in the root wrangler.toml.
declare namespace Cloudflare {
type Env = {
DB: D1Database;
};
}