Server/project/src/models/eft/profile/IConnectResponse.ts
chomp b44f62bb99 Feature: send launcher descriptions of profiles when calling connect() (!70)
Localise description text
Add `IConnectResponse` object for LauncherController.connect()
Move server name into core.json config

Co-authored-by: Dev <dev@noreply.dev.sp-tarkov.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/70
2023-03-15 14:18:55 +00:00

7 lines
151 B
TypeScript

export interface IConnectResponse
{
backendUrl: string,
name: string,
editions: string[],
profileDescriptions: Record<string, string>
}