interface IntValueNode {
    kind: "IntValue";
    loc?: Location;
    value: string;
}

Properties

Properties

kind: "IntValue"
loc?: Location
value: string