mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-29 08:56:43 -06:00
11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import { ObjectID } from 'mongodb';
|
|
import db from '../db/mongodb';
|
|
|
|
const FollowedLog = db.get<IFollowedLog>('followedLogs');
|
|
export default FollowedLog;
|
|
|
|
export type IFollowedLog = {
|
|
_id: ObjectID;
|
|
userId: ObjectID;
|
|
count: number;
|
|
};
|