mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
18 lines
452 B
Python
18 lines
452 B
Python
from pathlib import Path
|
|
from types import TracebackType
|
|
from typing import Optional, Tuple, Type, Union, Dict, Any
|
|
|
|
__all__ = [
|
|
'StrOrPath',
|
|
'SysExcInfoType', 'ExceptionInfoType',
|
|
'JSONDict',
|
|
]
|
|
|
|
StrOrPath = Union[str, Path]
|
|
SysExcInfoType = Union[
|
|
Tuple[Type[BaseException], BaseException, Optional[TracebackType]],
|
|
Tuple[None, None, None]
|
|
]
|
|
ExceptionInfoType = Union[bool, SysExcInfoType, BaseException]
|
|
JSONDict = Dict[str, Any]
|