@deskcreate/agentcraft
Preparing search index...
index
WorkflowResult
Interface WorkflowResult<TInput>
Final result returned by workflow.run() and workflow.resume().
interface
WorkflowResult
<
TInput
=
unknown
>
{
durationMs
:
number
;
input
:
TInput
;
runId
:
string
;
status
:
"completed"
|
"failed"
|
"partial"
;
steps
:
WorkflowStepResult
[]
;
totalCost
:
number
;
}
Type Parameters
TInput
=
unknown
Index
Properties
duration
Ms
input
run
Id
status
steps
total
Cost
Properties
Readonly
duration
Ms
durationMs
:
number
Readonly
input
input
:
TInput
Readonly
run
Id
runId
:
string
Readonly
status
status
:
"completed"
|
"failed"
|
"partial"
Readonly
steps
steps
:
WorkflowStepResult
[]
Readonly
total
Cost
totalCost
:
number
Settings
Member Visibility
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
duration
Ms
input
run
Id
status
steps
total
Cost
@deskcreate/agentcraft
Loading...
Final result returned by workflow.run() and workflow.resume().