0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00
server/project/src/models/eft/ragfair/IGetOffersResult.ts
CZPZ 8c37bc7837 Lint: ts files (!82)
Co-authored-by: alimoncul <alimoncul@gmail.com>
Reviewed-on: SPT-AKI/Server#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
}