Files
play-dl-test/play-dl/YouTube/classes/Thumbnail.ts

23 lines
431 B
TypeScript
Raw Normal View History

2021-11-18 15:38:25 +05:30
export class YouTubeThumbnail {
2021-11-23 09:56:08 +05:30
id: string;
url: string;
width: number;
height: number;
2021-11-18 15:38:25 +05:30
2021-11-23 09:56:08 +05:30
constructor(data: any) {
this.id = data.id;
this.url = data.url;
this.width = data.width;
this.height = data.height;
2021-11-18 15:38:25 +05:30
}
2021-11-23 09:56:08 +05:30
toJSON() {
2021-11-18 15:38:25 +05:30
return {
2021-11-23 09:56:08 +05:30
id: this.id,
url: this.url,
width: this.width,
height: this.height
};
2021-11-18 15:38:25 +05:30
}
2021-11-23 09:56:08 +05:30
}