rudeshark.net/src/api/models/channel.ts
2017-10-31 21:42:11 +09:00

14 lines
280 B
TypeScript

import * as mongo from 'mongodb';
import db from '../../db/mongodb';
const collection = db.get('channels');
export default collection as any; // fuck type definition
export type IChannel = {
_id: mongo.ObjectID;
created_at: Date;
title: string;
user_id: mongo.ObjectID;
};