Documentation
    Preparing search index...

    Represents the output of a workflow.

    interface Output<O> {
        ready: boolean;
        result: O;
    }

    Type Parameters

    • O
    Index

    Properties

    Properties

    ready: boolean

    Whether the output is ready.

    result: O

    The output of the workflow.