mirror of
https://github.com/ModOrganizer2/modorganizer-plugin_python.git
synced 2026-07-27 14:03:33 -07:00
* Expose INVALID_HANDLE_VALUE as mobase.INVALID_HANDLE_VALUE. * Add tests for startApplication() returning INVALID_HANDLE_VALUE. * Clean tests and generate stub files for them.
17 lines
493 B
Python
17 lines
493 B
Python
from __future__ import annotations
|
|
|
|
import typing
|
|
|
|
import mobase
|
|
|
|
__all__ = ["get_from_callback", "get_value", "get_variants", "set_from_callback"]
|
|
|
|
def get_from_callback(
|
|
arg0: typing.Callable[[mobase.GuessedString], None],
|
|
) -> str: ...
|
|
def get_value(arg0: str | mobase.GuessedString) -> str: ...
|
|
def get_variants(arg0: str | mobase.GuessedString) -> set[str]: ...
|
|
def set_from_callback(
|
|
arg0: mobase.GuessedString, arg1: typing.Callable[[mobase.GuessedString], None]
|
|
) -> None: ...
|