mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 08:26:43 -06: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;
|
|
}
|
|
}
|