5 lines
112 B
Python
5 lines
112 B
Python
from typing import TypeVar, Dict, Any, NewType
|
|
|
|
|
|
TSecurityDetails = NewType("TSecurityDetails", Dict[str, str])
|