base85.pyi
6 lines
| 145 B
| text/x-python
|
PythonLexer
Gregory Szorc
|
r46652 | from typing import Optional | ||
version: int | ||||
def b85encode(text: bytes, pad: Optional[int]) -> bytes: ... | ||||
def b85decode(text: bytes) -> bytes: ... | ||||