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
196 B
Python
Raw Normal View History

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