mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 21:00:27 +00:00
14 lines
356 B
Python
14 lines
356 B
Python
|
from pathlib import Path
|
||
|
from types import TracebackType
|
||
|
from typing import Tuple, Type, Union, Dict, Any
|
||
|
|
||
|
__all__ = [
|
||
|
'StrOrPath',
|
||
|
'ExceptionInfoType',
|
||
|
'JSONDict',
|
||
|
]
|
||
|
|
||
|
StrOrPath = Union[str, Path]
|
||
|
ExceptionInfoType = Union[bool, Tuple[Type[BaseException], BaseException, TracebackType, None], Tuple[None, None, None]]
|
||
|
JSONDict = Dict[str, Any]
|