UNPKG

osu-api-extended

Version:

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

9 lines (8 loc) 360 B
import { IDefaultParams, IError } from "../../types"; import { changelogsDetailsResponse } from "../../types/v2/changelogs_details"; type Response = changelogsDetailsResponse[] & IError; export declare const changelogs_details: (params: { stream_name: string; build_version: string; }, addons?: IDefaultParams) => Promise<Response>; export {};