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.
20 lines
790 B
Python
20 lines
790 B
Python
from __future__ import annotations
|
|
|
|
import typing
|
|
|
|
__all__ = ["fn_0_arg", "fn_0_or_1_arg", "fn_1_arg", "fn_1_or_2_or_3_arg", "fn_2_arg"]
|
|
|
|
def fn_0_arg(arg0: typing.Callable[[], int]) -> int: ...
|
|
@typing.overload
|
|
def fn_0_or_1_arg(arg0: typing.Callable[[], int]) -> int: ...
|
|
@typing.overload
|
|
def fn_0_or_1_arg(arg0: typing.Callable[[int], int]) -> int: ...
|
|
def fn_1_arg(arg0: typing.Callable[[int], int], arg1: int) -> int: ...
|
|
@typing.overload
|
|
def fn_1_or_2_or_3_arg(arg0: typing.Callable[[int], int]) -> int: ...
|
|
@typing.overload
|
|
def fn_1_or_2_or_3_arg(arg0: typing.Callable[[int, int], int]) -> int: ...
|
|
@typing.overload
|
|
def fn_1_or_2_or_3_arg(arg0: typing.Callable[[int, int, int], int]) -> int: ...
|
|
def fn_2_arg(arg0: typing.Callable[[int, int], int], arg1: int, arg2: int) -> int: ...
|