We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 248d0bf commit 222bb63Copy full SHA for 222bb63
jsonata.d.ts
@@ -11,7 +11,26 @@ declare namespace jsonata {
11
}
12
13
interface ExprNode {
14
- type: string;
+ type:
15
+ | "binary"
16
+ | "unary"
17
+ | "function"
18
+ | "partial"
19
+ | "lambda"
20
+ | "condition"
21
+ | "transform"
22
+ | "block"
23
+ | "name"
24
+ | "parent"
25
+ | "string"
26
+ | "number"
27
+ | "value"
28
+ | "wildcard"
29
+ | "descendant"
30
+ | "variable"
31
+ | "regexp"
32
+ | "operator"
33
+ | "error";
34
value?: any;
35
position?: number;
36
arguments?: ExprNode[];
0 commit comments