You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/mocks/utimeq.pyi

9 lines
297 B

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: ...