mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-14 10:02:16 +00:00
14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
import { YTNode } from '../helpers.js';
|
|
import { type RawNode } from '../index.js';
|
|
import { Text } from '../misc.js';
|
|
|
|
export default class DialogHeaderView extends YTNode {
|
|
static type = 'DialogHeaderView';
|
|
|
|
public headline: Text;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.headline = Text.fromAttributed(data.headline);
|
|
}
|
|
} |