-
Notifications
You must be signed in to change notification settings - Fork 15
v2.chat.channels.list
cyperdark edited this page May 23, 2023
·
3 revisions
Return list of channels
const { auth } = require('osu-api-extended');
await auth.login_lazer(username, password);
await v2.chat.channels.list()
export interface response {
channel_id: number;
description: string;
icon: string;
moderated: boolean;
name: string;
type: string;
uuid: string;
}