mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
import * as mongo from 'mongodb';
|
|
import db from '../../db/mongodb';
|
|
|
|
export default db.get('notifications') as any; // fuck type definition
|
|
|
|
export interface INotification {
|
|
_id: mongo.ObjectID;
|
|
}
|