UNPKG

osu-api-extended

Version:

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

12 lines (11 loc) 404 B
import { IDefaultParams, IError } from "../../types"; import { ChatMessagesResponse } from "../../types/v2/chat_messages"; type Response = ChatMessagesResponse[] & IError; export declare const chat_messages: (params: { channel_id: number; limit?: number; since?: number; until?: number; return_object?: boolean; }, addons?: IDefaultParams) => Promise<Response>; export {};