import type ActionTypeEnum from "../enums/ActionTypeEnum"; /** União das ações usadas no 'useTask'. */ export type Action = | { type: ActionTypeEnum.FAILED; error: unknown } | { type: ActionTypeEnum.STARTED } | { type: ActionTypeEnum.COMPLETED; result: null | Result };