Repository URL to install this package:
Version:
1.10.1 ▾
|
from typing import NamedTuple
class Region(NamedTuple):
"""Defines a rectangular region of the screen."""
x: int
y: int
width: int
height: int