construct-typing/construct-stubs/lib/hex.pyi

13 lines
261 B
Python
Raw Permalink Normal View History

import typing as t
2020-12-09 21:26:16 +01:00
2021-01-01 23:46:43 +01:00
2020-12-09 21:26:16 +01:00
class HexDisplayedInteger(int): ...
class HexDisplayedBytes(bytes): ...
K = t.TypeVar("K")
V = t.TypeVar("V")
2020-12-09 21:26:16 +01:00
class HexDisplayedDict(t.Dict[K, V]): ...
2020-12-09 21:26:16 +01:00
class HexDumpDisplayedBytes(bytes): ...
class HexDumpDisplayedDict(t.Dict[K, V]): ...