summaryrefslogtreecommitdiff
path: root/src/env.d.ts
blob: 359b598164188c509369ac2940e06cc436c70d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/// <reference types="astro/client" />

type D1Database = import('@cloudflare/workers-types').D1Database;

declare namespace App {
  interface Locals {
    runtime: {
      env: {
        DB: D1Database;
      };
    };
  }
}