Python Type Hints - How to Type a Descriptor
The descriptor protocol allow us to completely customize attribute access. Python’s documentation describes the protocol with types involved described with words. Let’s look at how we can write those as type hints.
Source: Python Type Hints - How to Type a Descriptor, an article by Adam Johnson.