mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 19:42:14 +00:00
* feat(Channel): Support new about popup * chore: Minor cleanup * fix(concatMemos): Merge duplicate nodes instead of overwriting * fix(Feed): `has_continuation` and `getContinuation()` avoid header continuations * chore(Channel): Remove unused import --------- Co-authored-by: LuanRT <luan.lrt4@gmail.com>
18 lines
526 B
TypeScript
18 lines
526 B
TypeScript
import { YTNode } from '../helpers.js';
|
|
import { Parser, type RawNode } from '../index.js';
|
|
import AboutChannelView from './AboutChannelView.js';
|
|
import Button from './Button.js';
|
|
|
|
export default class AboutChannel extends YTNode {
|
|
static type = 'AboutChannel';
|
|
|
|
metadata: AboutChannelView | null;
|
|
share_channel: Button | null;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
|
|
this.metadata = Parser.parseItem(data.metadata, AboutChannelView);
|
|
this.share_channel = Parser.parseItem(data.shareChannel, Button);
|
|
}
|
|
} |