""" Library of custom type hints. """ from typing import TypeAlias as Neotype from pathlib import PurePosixPath, PureWindowsPath, PosixPath, WindowsPath ExecutedPath: Neotype = PosixPath | WindowsPath IdlePath: Neotype = PurePosixPath | PureWindowsPath