mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-02 21:52:48 +00:00
chore: v3.0.0 release
This commit is contained in:
15
deno/src/parser/classes/ChannelMobileHeader.ts
Normal file
15
deno/src/parser/classes/ChannelMobileHeader.ts
Normal 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;
|
||||
Reference in New Issue
Block a user