mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-23 04:33:50 +01:00
12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
import * as mongodb from 'mongodb';
|
|
import { IConfig } from './config';
|
|
|
|
declare var config: IConfig;
|
|
|
|
declare module NodeJS {
|
|
interface Global {
|
|
config: IConfig;
|
|
db: mongodb.Db;
|
|
}
|
|
}
|