Skip to content

Commit

Permalink
fix: undo type undo-type-update
Browse files Browse the repository at this point in the history
An update to the TS definition in jsonata-js#633
is causing issues in transformers-jsonata since we are using both 1.x and 2.x
versions in there and types do not align anymore. Reverting the change for now.
We overwrite the type of the NodeExpr in mappings anyway, and so this should be
fine for now.
  • Loading branch information
nddery committed Mar 6, 2024
1 parent 13bc01f commit f6479ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsonata.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ declare namespace jsonata {
steps?: ExprNode[];
expressions?: ExprNode[];
stages?: ExprNode[];
lhs?: ExprNode[];
lhs?: ExprNode;
rhs?: ExprNode;
}

Expand Down

0 comments on commit f6479ed

Please sign in to comment.