From 45f114afe6205cdd6f8285a1447d1108b3c95fa7 Mon Sep 17 00:00:00 2001 From: taozhi8833998 Date: Wed, 16 Oct 2024 09:06:00 +0800 Subject: [PATCH] refactor: add type alias for backward-compatible --- types.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types.d.ts b/types.d.ts index 93c87c50..ab99e519 100644 --- a/types.d.ts +++ b/types.d.ts @@ -196,6 +196,8 @@ export type Binary = { parentheses?: boolean; }; +export type Expr = Binary; + export type ExpressionValue = | ColumnRef | Param