summaryrefslogtreecommitdiff
path: root/src/globals.d.ts
blob: 0af836212242da900642990d7216f8376f5c8173 (plain)
1
2
3
4
5
6
7
8
9
10
11
import * as mongodb from 'mongodb';
import { IConfig } from './config';

declare var config: IConfig;

declare module NodeJS {
	interface Global {
		config: IConfig;
		db: mongodb.Db;
	}
}