Edit on GitHub

sqlglot._typing

1from __future__ import annotations
2
3import typing as t
4
5import sqlglot
6
7E = t.TypeVar("E", bound="sqlglot.exp.Expression")
8T = t.TypeVar("T")