ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
18 lines (17 loc) • 513 B
TypeScript
export type VehicleSkillSet = {
collection: 'vehicle_skill_set';
format: {
vehicle_id: string;
skill_set_id: string;
faction_id: string;
display_index: string;
};
paths: 'vehicle_id' | 'skill_set_id' | 'faction_id' | 'display_index';
partialPaths: 'vehicle_id' | 'skill_set_id' | 'faction_id' | 'display_index';
conditions: {
display_index?: string;
faction_id?: string;
skill_set_id?: string;
vehicle_id?: string;
};
};