Coda by Ian Macalinao
    Preparing search index...

    Interface NumberTypeNode<TFormat, TDisplay>

    A numeric type with a fixed wire format and byte order.

    interface NumberTypeNode<
        TFormat extends NumberFormat = NumberFormat,
        TDisplay extends
            NumberDisplayNode | undefined = NumberDisplayNode | undefined,
    > {
        display?: TDisplay;
        endian: Endianness;
        format: TFormat;
        kind: "numberTypeNode";
    }

    Type Parameters

    Index
    display?: TDisplay

    Display metadata describing how the number is presented.

    endian: Endianness

    The byte order used to serialise the number.

    format: TFormat

    The wire format used to serialise the number.

    kind: "numberTypeNode"