@jiminp/tooltool
    Preparing search index...

    Type Alias AsyncYieldEvent<Y>

    A yield event.

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

    Type Parameters

    • Y

      Yielded value type.

    Index

    Properties

    Properties

    type: "yield"
    value: Y