8c37bc7837
Co-authored-by: alimoncul <alimoncul@gmail.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/82 Co-authored-by: CZPZ <czpz@noreply.dev.sp-tarkov.com> Co-committed-by: CZPZ <czpz@noreply.dev.sp-tarkov.com>
14 lines
312 B
TypeScript
14 lines
312 B
TypeScript
import { IBaseRepairActionDataRequest } from "./IBaseRepairActionDataRequest";
|
|
|
|
export interface ITraderRepairActionDataRequest extends IBaseRepairActionDataRequest
|
|
{
|
|
Action: "TraderRepair"
|
|
tid: string
|
|
repairItems: RepairItem[]
|
|
}
|
|
|
|
export interface RepairItem
|
|
{
|
|
_id: string
|
|
count: number
|
|
} |