| 5 | type MessageFn = (message: string) => void |
| 6 | |
| 7 | interface Task { |
| 8 | title: string |
| 9 | task: (message: MessageFn) => MaybePromise<string | void> |
| 10 | enabled?: boolean |
| 11 | } |
| 12 | |
| 13 | export const tasks = async (tasks: Task[]) => { |
| 14 | for (const task of tasks) { |
nothing calls this directly
no outgoing calls
no test coverage detected