Coda by Ian Macalinao
    Preparing search index...

    Interface NumberValueNode

    A concrete numeric value. Stored as a 64-bit float; consumers narrow to a specific integer or float width based on the surrounding type context.

    interface NumberValueNode {
        kind: "numberValueNode";
        number: number;
    }
    Index
    kind: "numberValueNode"
    number: number

    The numeric value.