ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
16 lines (15 loc) • 378 B
TypeScript
export type Experience = {
collection: 'experience';
format: {
experience_id: string;
description: string;
xp: string;
};
paths: 'experience_id' | 'description' | 'xp';
partialPaths: 'experience_id' | 'description' | 'xp';
conditions: {
description?: string;
experience_id?: string;
xp?: string;
};
};