mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-23 12:39:59 +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;
|
||
|
}
|
||
|
}
|