1
0
Fork 0
textual-textarea/stubs/pyperclip/__init__.pyi
Daniel Baumann c6da052ee9
Adding upstream version 0.15.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-24 11:29:34 +01:00

7 lines
214 B
Python

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