misskey/src/api/models/channel-watching.ts
2018-03-28 16:39:14 +09:00

15 lines
322 B
TypeScript

import * as mongo from 'mongodb';
import db from '../../db/mongodb';
const ChannelWatching = db.get<IChannelWatching>('channelWatching');
export default ChannelWatching;
export interface IChannelWatching {
_id: mongo.ObjectID;
createdAt: Date;
deletedAt: Date;
channelId: mongo.ObjectID;
userId: mongo.ObjectID;
}