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