Coda by Ian Macalinao
    Preparing search index...

    Interface ConstantNode<TType, TValue>

    A named constant exposed by the program: a typed value associated with a name.

    interface ConstantNode<
        TType extends TypeNode = TypeNode,
        TValue extends ValueNode = ValueNode,
    > {
        docs?: Docs;
        kind: "constantNode";
        name: CamelCaseString;
        type: TType;
        value: TValue;
    }

    Type Parameters

    Index
    docs?: Docs

    Markdown documentation for the constant.

    kind: "constantNode"

    The name of the constant.

    type: TType

    The type of the constant.

    value: TValue

    The concrete value of the constant.