youtubei
Version:
Simple package to get information from youtube such as videos, playlists, channels, video information & comments, related videos, up next video, and more!
18 lines (17 loc) • 427 B
TypeScript
/** @hidden */
interface MusicLyricsProperties {
content?: string;
description?: string;
}
/**
* Represent lyrics of a song
*/
export declare class MusicLyrics implements MusicLyricsProperties {
/** The lyrics it self */
content: string;
/** The lyrics description (usually contains lyrics source) */
description: string;
/** @hidden */
constructor(attr?: MusicLyricsProperties);
}
export {};