Coda by Ian Macalinao
    Preparing search index...

    Interface BooleanTypeNode<TSize>

    A boolean serialised as a numeric value. The wrapped number type determines the byte width.

    interface BooleanTypeNode<
        TSize extends
            NestedTypeNode<NumberTypeNode> = NestedTypeNode<NumberTypeNode>,
    > {
        kind: "booleanTypeNode";
        size: TSize;
    }

    Type Parameters

    Index
    kind: "booleanTypeNode"
    size: TSize

    The numeric type used to serialise the boolean.