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

20 lines
363 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
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.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
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
}