osu-api-extended
Version:
Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools
6 lines (5 loc) • 302 B
TypeScript
import { IDefaultParams, IError } from "../../types";
import { CommentsDetailsResponse } from "../../types/v2/comments_details";
type Response = CommentsDetailsResponse & IError;
export declare const comments_details: (comment_id: string, addons?: IDefaultParams) => Promise<Response>;
export {};