vapor-chamber API reference - v1.3.0
    Preparing search index...

    Type Alias WorkflowResult

    type WorkflowResult = {
        ok: boolean;
        results: CommandResult[];
        failedAt?: number;
        error?: Error;
        compensations?: CommandResult[];
    }
    Index

    Properties

    ok: boolean
    results: CommandResult[]

    Results of each step that executed (in order).

    failedAt?: number

    If failed, the step index that caused the failure.

    error?: Error

    Error from the failed step.

    compensations?: CommandResult[]

    Results of compensation steps (in reverse order).