Add kanban board with drag-and-drop, backlog section, task/group drawers, DTOs, services, and i18n translations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
134 B
TypeScript
10 lines
134 B
TypeScript
export type TaskEffort = {
|
|
id: number
|
|
'@id'?: string
|
|
label: string
|
|
}
|
|
|
|
export type TaskEffortWrite = {
|
|
label: string
|
|
}
|