waitlist/global.d.ts
Christopher Arraya 60183a37c5 fix errors
2023-07-02 20:28:33 -04:00

9 lines
151 B
TypeScript

import { MongoClient } from "mongodb";
declare global {
var mongo: {
conn: MongoClient | null;
promise: Promise<MongoClient> | null;
};
}