import { TaskflowId, TaskflowStatusId, UserId } from 'teambition-types'; export interface TaskflowStatusSnippet { _id: TaskflowStatusId; _taskflowId: TaskflowId; hasTaskflowEngineConfig: boolean; kind: 'start' | 'end' | 'unset'; name: string; pos: number; rejectStatusIds: TaskflowStatusId[]; } export interface TaskflowStatusSchema extends TaskflowStatusSnippet { _creatorId: UserId; taskCount?: number; created: string; updated: string; }