massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / google / protobuf / internal / enum_type_wrapper.pyi
1 from typing import Any, List, Tuple\r
2 \r
3 class EnumTypeWrapper(object):\r
4     def __init__(self, enum_type: Any) -> None: ...\r
5     def Name(self, number: int) -> bytes: ...\r
6     def Value(self, name: bytes) -> int: ...\r
7     def keys(self) -> List[bytes]: ...\r
8     def values(self) -> List[int]: ...\r
9 \r
10     @classmethod\r
11     def items(cls) -> List[Tuple[bytes, int]]: ...\r