import Text from './misc/Text.ts'; import { YTNode } from '../helpers.ts'; import type { RawNode } from '../index.ts'; export default class GridHeader extends YTNode { static type = 'GridHeader'; title: Text; constructor(data: RawNode) { super(); this.title = new Text(data.title); } }