Files
YouTube.js/deno/src/parser/classes/ChannelMobileHeader.ts
2023-04-29 05:15:47 +00:00

14 lines
322 B
TypeScript

import Text from './misc/Text.ts';
import { YTNode } from '../helpers.ts';
import type { RawNode } from '../index.ts';
export default class ChannelMobileHeader extends YTNode {
static type = 'ChannelMobileHeader';
title: Text;
constructor(data: RawNode) {
super();
this.title = new Text(data.title);
}
}