ytmusic_api_unofficial
Version:
A simple API to get music from YouTube Music
19 lines • 401 B
TypeScript
export declare class Thumbnail {
/**
* The URL of the thumbnail
* @example "https://lh3.googleusercontent.com/..."
*/
url: string;
/**
* The width of the thumbnail
* @example 60
*/
width: number;
/**
* The height of the thumbnail
* @example 60
*/
height: number;
constructor(data: any);
}
//# sourceMappingURL=Thumbnail.d.ts.map