import type { Project } from './project' export type TaskGroup = { id: number '@id'?: string title: string description: string | null color: string project: Project | null } export type TaskGroupWrite = { title: string description: string | null color: string project: string }