Server/project/src/models/eft/ragfair/IGetOffersResult.ts
CZPZ 8c37bc7837 Lint: ts files (!82)
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>
2023-03-22 14:31:05 +00:00

9 lines
209 B
TypeScript

import { IRagfairOffer } from "./IRagfairOffer";
export interface IGetOffersResult
{
categories?: Record<string, number>
offers: IRagfairOffer[]
offersCount: number
selectedCategory: string
}