aboutsummaryrefslogtreecommitdiff
path: root/apps/web/env.d.ts
blob: 8868e855bf2dd4dce59e1345b9bfdd6e8a7b3b3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
declare global {
  namespace NodeJS {
    interface ProcessEnv {
      [key: string]: string | undefined;
      DATABASE: D1Database;
      VECTORIZE_INDEX: VectorizeIndex;
      AI: any;
      RATELIMITER: any;
    }
  }
}

export {};