16 lines
254 B
TypeScript
16 lines
254 B
TypeScript
export type TaskStatus = {
|
|
id: number
|
|
'@id'?: string
|
|
label: string
|
|
color: string
|
|
position: number
|
|
isFinal: boolean
|
|
}
|
|
|
|
export type TaskStatusWrite = {
|
|
label: string
|
|
color: string
|
|
position: number
|
|
isFinal: boolean
|
|
}
|