FastGPT/src/types/index.d.ts
2023-03-10 18:54:51 +08:00

10 lines
135 B
TypeScript

import type { Mongoose } from 'mongoose';
declare global {
interface Global {
mongodb: Mongoose;
}
}
export type a = string;