28 lines
486 B
TypeScript
28 lines
486 B
TypeScript
import { Skills } from "@spt-aki/models/eft/common/tables/IBotBase";
|
|
|
|
export interface IPlayerIncrementSkillLevelRequestData
|
|
{
|
|
_id: string;
|
|
experience: number;
|
|
quests: any[];
|
|
ragFairOffers: any[];
|
|
builds: any[];
|
|
items: Items;
|
|
production: Production;
|
|
skills: Skills;
|
|
traderRelations: TraderRelations;
|
|
}
|
|
|
|
export interface Items
|
|
{
|
|
new: any[];
|
|
change: any[];
|
|
del: any[];
|
|
}
|
|
|
|
export interface Production
|
|
{}
|
|
|
|
export interface TraderRelations
|
|
{}
|