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