UNPKG

yandex-music-client

Version:

``` npm i yandex-music-client ```

28 lines (27 loc) 675 B
import type { Lyrics } from './Lyrics'; import type { VideoSupplement } from './VideoSupplement'; /** * дополнительная информация о треке */ export type Supplement = { /** * Уникальный идентификатор дополнительной информации. */ id?: number; /** * Текст песни. */ lyrics?: Lyrics; /** * Видео. */ videos?: VideoSupplement; /** * Доступно ли радио. */ radioIsAvailable?: boolean; /** * Полное описание эпизода подкаста. */ description?: string; };