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.
10 lines
278 B
Python
10 lines
278 B
Python
from __future__ import annotations
|
|
|
|
import mobase
|
|
|
|
__all__ = ["is_directory", "is_file", "value"]
|
|
|
|
def is_directory(arg0: mobase.IFileTree.FileTypes) -> bool: ...
|
|
def is_file(arg0: mobase.IFileTree.FileTypes) -> bool: ...
|
|
def value(arg0: mobase.IFileTree.FileTypes) -> int: ...
|