ytmusic_api_unofficial
Version:
A simple API to get music from YouTube Music
27 lines • 557 B
TypeScript
import { Thumbnail } from "./Thumbnail";
export default class User {
/**
* The userName
* @example "toto24"
*/
name: string;
/**
* The YouTube Music user id
* @example "UCRw0x9_EfawqmgDI2IgQLLg"
*/
id: number;
/**
* Thumbnails of the user
* @example
* ```json
* {
* "url": "https://lh3.googleusercontent.com/...",
* "width": 60,
* "height": 60
* }
* ```
*/
thumbnails: Thumbnail;
constructor(user: any);
}
//# sourceMappingURL=User.d.ts.map