Coda by Ian Macalinao
    Preparing search index...

    Interface RemainderOptionTypeNode<TItem>

    A value that may be present or absent. Presence is signalled by whether any bytes remain to be read, with no explicit prefix.

    interface RemainderOptionTypeNode<TItem extends TypeNode = TypeNode> {
        item: TItem;
        kind: "remainderOptionTypeNode";
    }

    Type Parameters

    Index
    item: TItem

    The type carried by the option when present.

    kind: "remainderOptionTypeNode"