import { StageId, ProjectId, TasklistId, UserId } from 'teambition-types'; export interface StageSchema { _id: StageId; _creatorId: UserId; _projectId: ProjectId; _tasklistId: TasklistId; name: string; order: number; totalCount: number; isArchived: boolean; isLocked?: boolean; isDefault?: boolean; }