5 lines
95 B
Python
5 lines
95 B
Python
from typing import Any
|
|
|
|
def encode(obj: Any) -> bytes: ...
|
|
def decode(data: bytes) -> Any: ...
|