mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-22 14:08:06 +00:00
13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
import { type RawNode, Parser } from '../index.js';
|
|
import { YTNode } from '../helpers.js';
|
|
|
|
export default class SharePanelHeader extends YTNode {
|
|
static type = 'SharePanelHeader';
|
|
|
|
public title: YTNode;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.title = Parser.parseItem(data.title);
|
|
}
|
|
} |