mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 23:10:12 +00:00
8 lines
247 B
Python
8 lines
247 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: ...
|