send_key_events()

This commit is contained in:
Devaev Maxim
2020-06-06 13:19:30 +03:00
parent 1d7d4100a5
commit 04c3763e69
5 changed files with 28 additions and 24 deletions

View File

@@ -20,7 +20,9 @@
# ========================================================================== #
from typing import Tuple
from typing import Dict
from typing import Iterable
from typing import AsyncGenerator
from typing import Type
@@ -48,7 +50,7 @@ class BaseHid(BasePlugin):
# =====
def send_key_event(self, key: str, state: bool) -> None:
def send_key_events(self, keys: Iterable[Tuple[str, bool]]) -> None:
raise NotImplementedError
def send_mouse_button_event(self, button: str, state: bool) -> None: