summaryrefslogtreecommitdiffstats
path: root/sqlglot/_typing.py
blob: 2acbbf71e17b4eaa4c63ce4685940a0b5a0e0a62 (plain)
1
2
3
4
5
6
7
8
from __future__ import annotations

import typing as t

import sqlglot

E = t.TypeVar("E", bound="sqlglot.exp.Expression")
T = t.TypeVar("T")