UNPKG

ps2census

Version:

Client to connect to the PS2 Event Stream websocket.

52 lines (51 loc) 1.87 kB
export type SkillSet = { collection: 'skill_set'; format: { skill_set_id: string; skill_points: string; required_item_id: string; name: { de: string; en: string; es: string; fr: string; it: string; tr: string; }; description: { de: string; en: string; es: string; fr: string; it: string; tr: string; }; image_set_id: string; image_id: string; image_path: string; }; paths: 'skill_set_id' | 'skill_points' | 'required_item_id' | 'name.de' | 'name.en' | 'name.es' | 'name.fr' | 'name.it' | 'name.tr' | 'description.de' | 'description.en' | 'description.es' | 'description.fr' | 'description.it' | 'description.tr' | 'image_set_id' | 'image_id' | 'image_path'; partialPaths: 'skill_set_id' | 'skill_points' | 'required_item_id' | 'name' | 'name.de' | 'name.en' | 'name.es' | 'name.fr' | 'name.it' | 'name.tr' | 'description' | 'description.de' | 'description.en' | 'description.es' | 'description.fr' | 'description.it' | 'description.tr' | 'image_set_id' | 'image_id' | 'image_path'; conditions: { description?: string; 'description.de'?: string; 'description.en'?: string; 'description.es'?: string; 'description.fr'?: string; 'description.it'?: string; 'description.tr'?: string; image_id?: string; image_path?: string; image_set_id?: string; name?: string; 'name.de'?: string; 'name.en'?: string; 'name.es'?: string; 'name.fr'?: string; 'name.it'?: string; 'name.tr'?: string; required_item_id?: string; skill_points?: string; skill_set_id?: string; }; };