mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
12 lines
206 B
TypeScript
12 lines
206 B
TypeScript
![]() |
export interface IGenerateBotsRequestData
|
||
|
{
|
||
|
conditions: Condition[]
|
||
|
}
|
||
|
|
||
|
export interface Condition
|
||
|
{
|
||
|
/** e.g. assault/pmcBot/bossKilla */
|
||
|
Role: string
|
||
|
Limit: number
|
||
|
Difficulty: string
|
||
|
}
|