UNPKG

soundcloud.ts

Version:

Soundcloud API v2 wrapper with typings.

11 lines (10 loc) 304 B
import type { SoundcloudOembedFilter } from "../types"; import { API } from "../API"; export declare class Oembed { private readonly api; constructor(api: API); /** * Gets the Oembed for a track, playlist, or user. */ get: (params: SoundcloudOembedFilter) => Promise<string>; }