rudeshark.net/src/api/models/channel.ts

15 lines
296 B
TypeScript
Raw Normal View History

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