Files
YouTube.js/deno/src/parser/classes/AccountItemSectionHeader.ts
2023-04-29 05:15:47 +00:00

14 lines
332 B
TypeScript

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