Type Alias NodeResult

NodeResult:
    | { action?: string; output: unknown; type: "success" }
    | { error: Error; type: "error" }