1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 14:30:31 +00:00
trezor-firmware/core/mocks/micropython.pyi

10 lines
223 B
Python
Raw Normal View History

from typing import TypeVar
C = TypeVar("C", bound=int)
def const(c: C) -> C: ...
def mem_info(verbose: bool | None = None) -> None: ...
2017-06-14 10:26:02 +00:00
def mem_current() -> int: ...
def mem_total() -> int: ...
def mem_peak() -> int: ...