mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-24 13:03:39 +00: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;
|
|
}
|
|
}
|