import { ObjectId } from 'bson'; export default interface MongoDoc { data: { adks: Record[]; [x: string]: any; }; update: (shouldMarkAsComplete?: any) => Promise; changeStream: any; } export interface TableItem { user_id: ObjectId; time: Date; minutes: number; name: string; // log: string; // uniqueId: ObjectId; }