Type Alias: ExecuteOutput
type ExecuteOutput =
| ExecuteSuccess
| ExecuteError;
Defined in: apps/submitter/lib/handlers/execute/types.ts:43
Output of an execute
call (boop/execute
route): either a successful execution
ExecuteSuccess, or a failed execution ExecuteError.