import { SprintId, ProjectId, UserId, UserSnippet } from 'teambition-types'; export interface SprintSchema { _id: SprintId; _creatorId: UserId; _projectId: ProjectId; name: string; startDate: string | null; dueDate: string | null; isDeleted: boolean; status: 'future' | 'active' | 'complete'; noStoryPointTaskCount: number; created: string; updated: string; description: string; executor: UserSnippet | null; _executorId: UserId | null; }