mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-03-14 01:41:07 +02:00
11 lines
189 B
TypeScript
11 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;
|
|
}
|
|
}
|