418d9f2a8f
- Ability to use @spt-aki path alias on the whole project. - Swapped all imports from relative paths, for imports using the path alias. Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/157 Co-authored-by: TheSparta <thesparta@noreply.dev.sp-tarkov.com> Co-committed-by: TheSparta <thesparta@noreply.dev.sp-tarkov.com>
27 lines
479 B
TypeScript
27 lines
479 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
|
|
{ } |