mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-24 15:21:54 +00:00
chore: v5.0.0 release
This commit is contained in:
@@ -1,15 +1,14 @@
|
||||
import Text from './misc/Text.ts';
|
||||
import { YTNode } from '../helpers.ts';
|
||||
import type { RawNode } from '../index.ts';
|
||||
import Text from './misc/Text.ts';
|
||||
|
||||
class ThumbnailOverlayLoadingPreview extends YTNode {
|
||||
export default class ThumbnailOverlayLoadingPreview extends YTNode {
|
||||
static type = 'ThumbnailOverlayLoadingPreview';
|
||||
|
||||
text: Text;
|
||||
|
||||
constructor(data: any) {
|
||||
constructor(data: RawNode) {
|
||||
super();
|
||||
this.text = new Text(data.text);
|
||||
}
|
||||
}
|
||||
|
||||
export default ThumbnailOverlayLoadingPreview;
|
||||
}
|
||||
Reference in New Issue
Block a user