massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / paramiko / paramiko / compress.pyi
1 from zlib import _Compress, _Decompress
2
3 class ZlibCompressor:
4     z: _Compress
5     def __init__(self) -> None: ...
6     def __call__(self, data: bytes) -> bytes: ...
7
8 class ZlibDecompressor:
9     z: _Decompress
10     def __init__(self) -> None: ...
11     def __call__(self, data: bytes) -> bytes: ...