chore: v3.0.0 release

This commit is contained in:
LuanRT
2023-02-17 04:23:49 +00:00
commit 52b7400442
497 changed files with 27613 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import Text from './misc/Text.ts';
import { YTNode } from '../helpers.ts';
class ThumbnailOverlayLoadingPreview extends YTNode {
static type = 'ThumbnailOverlayLoadingPreview';
text: Text;
constructor(data: any) {
super();
this.text = new Text(data.text);
}
}
export default ThumbnailOverlayLoadingPreview;