Sharkey/src/globals.d.ts

12 lines
189 B
TypeScript
Raw Normal View History

2016-12-28 18:02:55 -08:00
import * as mongodb from 'mongodb';
import { IConfig } from './config';
declare var config: IConfig;
declare module NodeJS {
interface Global {
config: IConfig;
db: mongodb.Db;
}
}