UNPKG

yandex-music

Version:

Creative and progressive Node.js framework for applications that interact with yandex music

18 lines 554 B
import { YandexMusicClient } from "../client"; import { FeedInterface } from "../interfaces"; export declare class Feed { private readonly client; constructor(client: YandexMusicClient); /** * Getting a stream of information (feed) tailored to the user. Contains smart playlists. * @returns Smart user Playlists. */ feed(): Promise<FeedInterface>; /** * @returns True or false */ wizard(): Promise<{ isWizardPassed: boolean; }>; } //# sourceMappingURL=index.d.ts.map