2017-10-30 01:30:32 -07:00
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import db from '../../db/mongodb';
|
|
|
|
|
2017-10-31 05:42:11 -07:00
|
|
|
const collection = db.get('channels');
|
2017-10-30 01:30:32 -07:00
|
|
|
|
|
|
|
export default collection as any; // fuck type definition
|
|
|
|
|
2017-10-31 05:42:11 -07:00
|
|
|
export type IChannel = {
|
2017-10-30 01:30:32 -07:00
|
|
|
_id: mongo.ObjectID;
|
|
|
|
created_at: Date;
|
|
|
|
title: string;
|
|
|
|
user_id: mongo.ObjectID;
|
2017-10-31 09:38:19 -07:00
|
|
|
index: number;
|
2017-10-30 01:30:32 -07:00
|
|
|
};
|