(value: string, order: number, label = value)
| 10 | } from "../../../src/modals/taskModalActionState"; |
| 11 | |
| 12 | function status(value: string, order: number, label = value): StatusConfig { |
| 13 | return { |
| 14 | id: value, |
| 15 | value, |
| 16 | label, |
| 17 | color: "", |
| 18 | order, |
| 19 | isCompleted: false, |
| 20 | autoArchive: false, |
| 21 | autoArchiveDelay: 0, |
| 22 | }; |
| 23 | } |
| 24 | |
| 25 | function priority(value: string, weight: number, label = value): PriorityConfig { |
| 26 | return { |
no outgoing calls
no test coverage detected