Thanks for stopping by to let us know something could be better!
PLEASE READ: If you have a support contract with Google, please create an issue in the support console instead of filing on GitHub. This will ensure a timely response.
Is your feature request related to a problem? Please describe.
Tools like mypy can use type hints to run static analysis on your code to find bugs in incorrect type usage.
Describe the solution you'd like
Mypy requires type hints to be exported by the library, either as part of the library and exported per PEP 484, or as a separate stubs library per PEP 561.
Describe alternatives you've considered
Currently we're ignoring all typing information for this library.
Additional context
Thanks for stopping by to let us know something could be better!
PLEASE READ: If you have a support contract with Google, please create an issue in the support console instead of filing on GitHub. This will ensure a timely response.
Is your feature request related to a problem? Please describe. Tools like mypy can use type hints to run static analysis on your code to find bugs in incorrect type usage. Describe the solution you'd like Mypy requires type hints to be exported by the library, either as part of the library and exported per PEP 484, or as a separate stubs library per PEP 561. Describe alternatives you've considered Currently we're ignoring all typing information for this library. Additional context