Coda by Ian Macalinao
    Preparing search index...

    Interface ConstantNode<TType, TValue>

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

    Type Parameters

    Index

    Properties

    Properties

    docs?: Docs
    kind: "constantNode"
    type: TType
    value: TValue