import { ProjectStatusActivityId, ProjectStatusDegree, UserSnippet } from 'teambition-types'; export interface ProjectStatusActivitySchema { _boundToObjectId: string; _id: ProjectStatusActivityId; action: string; boundToObjectType: string; canRecall: boolean; content: { content: string; degree: ProjectStatusDegree; name: string; }; created: string; creator: UserSnippet; isDeleted: boolean; isDirectMessage: boolean; isGuest: boolean; isHomeActivity: boolean; isRecalledDirectMessage: boolean; source: string; updated: string; }