UNPKG

osu-api-extended

Version:

Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools

20 lines (19 loc) 396 B
export interface GroupsHistoryResponse { events: Event[]; cursor: Cursor; cursor_string: string; } export interface Event { created_at: string; group_id: number; hidden: boolean; id: number; type: string; user_id: number; user_name: string; group_name: string; playmodes?: string[]; } export interface Cursor { id: number; }