UNPKG

osu-api-extended

Version:

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

8 lines (7 loc) 305 B
import { IDefaultParams, IError } from "../../types"; import { ChatDetailsResponse } from "../../types/v2/chat_details"; type Response = ChatDetailsResponse & IError; export declare const chat_details: (params: { channel_id: number; }, addons?: IDefaultParams) => Promise<Response>; export {};