blob: 1d23e2bcaeb248c19918ea141d024889a116bf4e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
declare global {
namespace NodeJS {
interface ProcessEnv {
[key: string]: string | undefined;
DATABASE: D1Database;
VECTORIZE_INDEX: VectorizeIndex;
AI: any
}
}
}
export { };
|