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 ChannelMobileHeader extends YTNode {
static type = 'ChannelMobileHeader';
title: Text;
constructor(data: any) {
super();
this.title = new Text(data.title);
}
}
export default ChannelMobileHeader;