added some custom types to be used in other modules

This commit is contained in:
2025-12-25 09:40:04 -05:00
parent c8fc487996
commit f5af9a7639

9
custtypes.py Normal file
View File

@@ -0,0 +1,9 @@
"""
Library of custom type hints.
"""
from typing import TypeAlias as Neotype
from pathlib import PurePosixPath, PureWindowsPath, PosixPath, WindowsPath
ExecutedPath: Neotype = Union[PosixPath, WindowsPath]
IdlePath: Neotype = Union[PurePosixPath, PureWindowsPath]