UNPKG

osu-api-extended

Version:

Advanced osu! api wrapper for v1 and v2, with extra stuff

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 {};