UNPKG

osu-api-extended

Version:

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

6 lines (5 loc) 280 B
import { IDefaultParams, IError } from "../../types"; import { SpotlightsListResponse } from "../../types/v2/spotlights_list"; type Response = SpotlightsListResponse[] & IError; export declare const spotlights_list: (addons?: IDefaultParams) => Promise<Response>; export {};