Interface RawWidget

interface RawWidget {
    channels: Required<Pick<RawChannel, "name" | "id" | "position">>[];
    id: string;
    instant_invite: null | string;
    members: RawWidgetUser[];
    name: string;
    presence_count: number;
}

Properties

channels: Required<Pick<RawChannel, "name" | "id" | "position">>[]
id: string
instant_invite: null | string
members: RawWidgetUser[]
name: string
presence_count: number