summaryrefslogtreecommitdiffstats
path: root/sqlglot/_typing.py
diff options
context:
space:
mode:
Diffstat (limited to 'sqlglot/_typing.py')
-rw-r--r--sqlglot/_typing.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/sqlglot/_typing.py b/sqlglot/_typing.py
new file mode 100644
index 0000000..2acbbf7
--- /dev/null
+++ b/sqlglot/_typing.py
@@ -0,0 +1,8 @@
+from __future__ import annotations
+
+import typing as t
+
+import sqlglot
+
+E = t.TypeVar("E", bound="sqlglot.exp.Expression")
+T = t.TypeVar("T")