ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
18 lines (17 loc) • 471 B
TypeScript
export type Loadout = {
collection: 'loadout';
format: {
loadout_id: string;
profile_id: string;
faction_id: string;
code_name: string;
};
paths: 'loadout_id' | 'profile_id' | 'faction_id' | 'code_name';
partialPaths: 'loadout_id' | 'profile_id' | 'faction_id' | 'code_name';
conditions: {
code_name?: string;
faction_id?: string;
loadout_id?: string;
profile_id?: string;
};
};