mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 17:46:44 -06:00
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
|
import * as mongo from 'mongodb';
|
||
|
import db from '../../db/mongodb';
|
||
|
|
||
|
const collection = db.get('bbs_threads');
|
||
|
|
||
|
export default collection as any; // fuck type definition
|
||
|
|
||
|
export type IBbsThread = {
|
||
|
_id: mongo.ObjectID;
|
||
|
created_at: Date;
|
||
|
title: string;
|
||
|
user_id: mongo.ObjectID;
|
||
|
};
|