mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2026-02-09 15:54:20 +01:00
9 lines
207 B
Python
9 lines
207 B
Python
from typing import Type, Tuple, List, Dict, TypedDict, Union, Optional, Any
|
|
|
|
#region Type hinting for Rest Public Endpoints
|
|
|
|
PlatformStatus = TypedDict("PlatformStatus", {
|
|
"OPERATIVE": int
|
|
})
|
|
|
|
#endregion |