UNPKG

osu-api-extended

Version:

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

9 lines (8 loc) 331 B
import { IDefaultParams, IError } from "../../types"; import { ChatListResponse } from "../../types/v2/chat_list"; type Response = ChatListResponse[] & IError; export declare const chat_list: (params: { unread?: boolean; sort?: 'date_desc' | 'date_asc'; }, addons?: IDefaultParams) => Promise<Response>; export {};