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