aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/prompt-toolkit/py3/prompt_toolkit/data_structures.py
blob: 454bb964ec3444dd31e5253d76d4c86911a321e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from typing import NamedTuple

__all__ = [
    "Point",
    "Size",
]


Point = NamedTuple("Point", [("x", int), ("y", int)])
Size = NamedTuple("Size", [("rows", int), ("columns", int)])