import { TraceId, DetailObjectId, DetailObjectType, UserSnippet, UserId } from 'teambition-types'; import { FileSchema } from './File'; export interface TraceSchema { _boundToObjectId: DetailObjectId; _creatorId: UserId; _id: TraceId; activityCount: number; attachments: FileSchema[]; boundToObjectType: DetailObjectType; content: string; created: string; creator: UserSnippet; likeCount: number; mentionIds: UserId[]; objectType: 'trace'; raw: string; reminderIds: UserId[]; renderMode: 'html'; status: number; title: string; updated: string; }