chaosdc/node_modules/soundcloud.ts/dist/entities/Comments.d.ts

11 lines
310 B
TypeScript

import type { SoundcloudComment } from "../types";
import { API } from "../API";
export declare class Comments {
private readonly api;
constructor(api: API);
/**
* Gets a comment from its ID, using the Soundcloud v2 API.
*/
getV2: (commentID: number) => Promise<SoundcloudComment>;
}