import type { Project } from './project' export type TaskStatus = { id: number '@id'?: string label: string color: string position: number project: Project | null } export type TaskStatusWrite = { label: string color: string position: number project: string }