Renamed interfaces
This commit is contained in:
parent
6b6b791940
commit
218044d23b
@ -7,10 +7,10 @@ export interface IProcessBuyTradeRequestData extends IProcessBaseTradeRequestDat
|
|||||||
item_id: string;
|
item_id: string;
|
||||||
count: number;
|
count: number;
|
||||||
scheme_id: number;
|
scheme_id: number;
|
||||||
scheme_items: SchemeItem[];
|
scheme_items: ISchemeItem[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SchemeItem {
|
export interface ISchemeItem {
|
||||||
/** Id of stack to take money from, is money tpl when Action is `SptInsure` */
|
/** Id of stack to take money from, is money tpl when Action is `SptInsure` */
|
||||||
id: string;
|
id: string;
|
||||||
count: number;
|
count: number;
|
||||||
|
@ -5,10 +5,10 @@ export interface IProcessSellTradeRequestData extends IProcessBaseTradeRequestDa
|
|||||||
type: string;
|
type: string;
|
||||||
tid: string;
|
tid: string;
|
||||||
price: number;
|
price: number;
|
||||||
items: Item[];
|
items: ISoldItem[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Item {
|
export interface ISoldItem {
|
||||||
id: string;
|
id: string;
|
||||||
count: number;
|
count: number;
|
||||||
scheme_id: number;
|
scheme_id: number;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user