Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

JSONPathNode

interface JSONPathNode extends OperationNode {
readonly inOperator?: OperatorNode;
readonly kind: "JSONPathNode";
readonly pathLegs: ReadonlyArray<JSONPathLegNode>;
}
const JSONPathNode: Readonly<{
is(node: OperationNode): node is JSONPathNode;
create(inOperator?: OperatorNode): JSONPathNode;
cloneWithLeg(jsonPathNode: JSONPathNode, pathLeg: JSONPathLegNode): JSONPathNode;
}
>
;

§Extends

§Properties

§
readonly inOperator?: OperatorNode
[src]
§
readonly kind: "JSONPathNode"
[src]
§
readonly pathLegs: ReadonlyArray<JSONPathLegNode>
[src]