ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
20 lines (19 loc) • 563 B
TypeScript
export type VehicleAttachment = {
collection: 'vehicle_attachment';
format: {
item_id: string;
vehicle_id: string;
faction_id: string;
description: string;
slot_id: string;
};
paths: 'item_id' | 'vehicle_id' | 'faction_id' | 'description' | 'slot_id';
partialPaths: 'item_id' | 'vehicle_id' | 'faction_id' | 'description' | 'slot_id';
conditions: {
description?: string;
faction_id?: string;
item_id?: string;
slot_id?: string;
vehicle_id?: string;
};
};