import Text from './misc/Text.js'; import { YTNode } from '../helpers.js'; import type { RawNode } from '../index.js'; export default class MetadataRowHeader extends YTNode { static type = 'MetadataRowHeader'; content: Text; has_divider_line: boolean; constructor(data: RawNode) { super(); this.content = new Text(data.content); this.has_divider_line = data.hasDividerLine; } }