v3.3.7: fix nesting in contract list result type

This commit is contained in:
tiagosiebler
2022-12-28 14:44:33 +00:00
parent b1e23f2d05
commit ae47d77f15
3 changed files with 7 additions and 2 deletions

View File

@@ -2,6 +2,10 @@ export interface PaginatedResult<TList = any> {
nextPageCursor: string;
list: TList[];
}
export interface ContractListResult<TList = any> {
category: string;
list: TList[];
}
export interface ContractHistoricOrder {
symbol: string;