ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
16 lines (15 loc) • 394 B
TypeScript
export type ProfileArmorMap = {
collection: 'profile_armor_map';
format: {
profile_id: string;
armor_info_id: string;
rank: string;
};
paths: 'profile_id' | 'armor_info_id' | 'rank';
partialPaths: 'profile_id' | 'armor_info_id' | 'rank';
conditions: {
armor_info_id?: string;
profile_id?: string;
rank?: string;
};
};