mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-18 20:12:12 +00:00
14 lines
327 B
TypeScript
14 lines
327 B
TypeScript
import type { RawNode } from '../index.js';
|
|
import { YTNode } from '../helpers.js';
|
|
import { Text } from '../misc.js';
|
|
|
|
export default class SharePanelTitleV15 extends YTNode {
|
|
static type = 'SharePanelTitleV15';
|
|
|
|
public title: Text;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.title = new Text(data.title);
|
|
}
|
|
} |