typing-extensions
https://pypi.org/project/typing-extensions/
typing-extensionsでもtyping_extensionsでもインストールできるっぽい
#Python_typing
https://github.com/python/typing/blob/master/typing_extensions/README.md
The typing_extensions module serves two related purposes:
Enable use of new type system features on older Python versions.
例:Python 3.10で追加されたtyping.TypeGuardがPython 3.6〜3.9でも使えるようにする(typing.TypeGuard)
Enable experimentation with new type system PEPs before they are accepted and added to the typing module.
typing-extensionsを見ておけば、型まわりのPythonの変更は追従できそう