carkov/typehints/msgpack.pyi

5 lines
183 B
Python

from typing import Any, Callable, Dict
def packb(o: Any, use_bin_type: bool, default: Callable) -> bytes: ...
def unpackb(data: bytes, raw: bool, object_hook: Callable) -> Dict: ...