Renamed interfaces

This commit is contained in:
Dev 2024-09-23 10:20:02 +01:00
parent 6b6b791940
commit 218044d23b
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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;