mirror of
https://github.com/YuzuZensai/play-dl-test.git
synced 2026-01-30 12:22:48 +00:00
20 lines
363 B
TypeScript
20 lines
363 B
TypeScript
export class YouTubeThumbnail {
|
|
url: string;
|
|
width: number;
|
|
height: number;
|
|
|
|
constructor(data: any) {
|
|
this.url = data.url;
|
|
this.width = data.width;
|
|
this.height = data.height;
|
|
}
|
|
|
|
toJSON() {
|
|
return {
|
|
url: this.url,
|
|
width: this.width,
|
|
height: this.height
|
|
};
|
|
}
|
|
}
|