Files
GNX-WEB/frontEnd/venv/lib/python3.12/site-packages/prompt_toolkit/data_structures.py
Iliyan Angelov 366f28677a update
2025-11-24 03:52:08 +02:00

19 lines
212 B
Python

from __future__ import annotations
from typing import NamedTuple
__all__ = [
"Point",
"Size",
]
class Point(NamedTuple):
x: int
y: int
class Size(NamedTuple):
rows: int
columns: int