Coda by Ian Macalinao
    Preparing search index...

    Interface ConstantValueNode<TType, TValue>

    interface ConstantValueNode<
        TType extends TypeNode = TypeNode,
        TValue extends ValueNode = ValueNode,
    > {
        kind: "constantValueNode";
        type: TType;
        value: TValue;
    }

    Type Parameters

    Index

    Properties

    Properties

    kind: "constantValueNode"
    type: TType
    value: TValue