Make all properties of ITrader optional

This commit is contained in:
Dev 2024-01-14 15:06:43 +00:00
parent 48377a0e08
commit c2f390d4ac

View File

@ -4,10 +4,10 @@ import { ITraderServiceModel } from "@spt-aki/models/spt/services/ITraderService
export interface ITrader export interface ITrader
{ {
assort: ITraderAssort; assort?: ITraderAssort;
base: ITraderBase; base: ITraderBase;
dialogue?: Record<string, string[]>; dialogue?: Record<string, string[]>;
questassort: Record<string, Record<string, string>>; questassort?: Record<string, Record<string, string>>;
suits?: ISuit[]; suits?: ISuit[];
services?: ITraderServiceModel[]; services?: ITraderServiceModel[];
} }