ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
16 lines (15 loc) • 356 B
TypeScript
export type Image = {
collection: 'image';
format: {
image_id: string;
description: string;
path: string;
};
paths: 'image_id' | 'description' | 'path';
partialPaths: 'image_id' | 'description' | 'path';
conditions: {
description?: string;
image_id?: string;
path?: string;
};
};