mirror of
https://github.com/dcarrillo/atalaya.git
synced 2026-04-18 10:34:06 +00:00
12 lines
367 B
TypeScript
12 lines
367 B
TypeScript
/// <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;
|
|
};
|
|
}
|