Files
YouTube.js/src/parser/classes/AccountItemSectionHeader.ts
2022-08-25 01:43:05 -03:00

15 lines
305 B
TypeScript

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