mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
19 lines
404 B
TypeScript
19 lines
404 B
TypeScript
export = Author;
|
|
declare class Author {
|
|
constructor(item: any, badges: any, thumbs: any);
|
|
id: any;
|
|
name: any;
|
|
thumbnails: Thumbnail[];
|
|
endpoint: any;
|
|
badges: any;
|
|
is_verified: any;
|
|
is_verified_artist: any;
|
|
url: string;
|
|
/**
|
|
* @type {Thumbnail | undefined}
|
|
*/
|
|
get best_thumbnail(): Thumbnail;
|
|
#private;
|
|
}
|
|
import Thumbnail = require("./Thumbnail");
|