1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 09:58:59 +00:00
trezor-firmware/core/mocks/utimeq.py
2019-04-15 19:14:40 +02:00

9 lines
297 B
Python

from typing import *
class utimeq:
def __init__(self, max_queue_size: int) -> None: ...
def push(self, time: int, callback: Any, value: Any) -> None: ...
def pop(self, entry: List[Any]) -> None: ...
def peektime(self) -> int: ...
def discard(self, callback: Any) -> None: ...