osu-api-extended
Version:
Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools
20 lines (19 loc) • 479 B
TypeScript
export interface chatActionsJoinResponse {
channel_id: number;
description: string;
icon: any;
message_length_limit: number;
moderated: boolean;
name: string;
type: string;
uuid: any;
current_user_attributes: CurrentUserAttributes;
last_message_id: number;
last_read_id: any;
users: any[];
}
export interface CurrentUserAttributes {
can_message: boolean;
can_message_error: any;
last_read_id: any;
}