1
0
Fork 0
textual-textarea/stubs/pyperclip/__init__.pyi

8 lines
214 B
Python
Raw Permalink Normal View History

from typing import Callable, Tuple
def copy(s: str) -> None: ...
def paste() -> str: ...
def determine_clipboard() -> Tuple[Callable[[str], None], Callable[[], str]]: ...
class PyperclipException(Exception): ...