Skip to content

Commit

Permalink
Update ExprNode.type
Browse files Browse the repository at this point in the history
List all possible string types
  • Loading branch information
DevDimov authored and mattbaileyuk committed Sep 27, 2024
1 parent 248d0bf commit 222bb63
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion jsonata.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,26 @@ declare namespace jsonata {
}

interface ExprNode {
type: string;
type:
| "binary"
| "unary"
| "function"
| "partial"
| "lambda"
| "condition"
| "transform"
| "block"
| "name"
| "parent"
| "string"
| "number"
| "value"
| "wildcard"
| "descendant"
| "variable"
| "regexp"
| "operator"
| "error";
value?: any;
position?: number;
arguments?: ExprNode[];
Expand Down

0 comments on commit 222bb63

Please sign in to comment.