@jiminp/tooltool
    Preparing search index...

    Type Alias AsyncYieldEvent<Y>

    Represents a yield event in an async generator execution.

    type AsyncYieldEvent<Y> = {
        type: "yield";
        value: Y;
    }

    Type Parameters

    • Y

      The type of the yielded value

    Index

    Properties

    Properties

    type: "yield"
    value: Y