import { ProjectId, TaskId, TaskPosId } from 'teambition-types'; export interface TaskPosSchema { _id: TaskPosId; _projectId: ProjectId; view?: string; _taskId: TaskId; pos: number; created: string; updated: string; }