Flatlogic Bot ca3a32f23e V 4
2026-02-16 06:55:36 +00:00

14 lines
409 B
TypeScript

import { API } from "../API";
export declare class Resolve {
private readonly api;
constructor(api: API);
/**
* Gets the ID from the html source.
*/
getAlt: (resolvable: string | number) => Promise<number>;
/**
* Gets the ID of a user/playlist/track from the Soundcloud URL using the v2 API.
*/
get: (resolvable: string | number, full?: boolean) => Promise<any>;
}