mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 19:12:24 +00:00
15 lines
284 B
TypeScript
15 lines
284 B
TypeScript
import Text from './misc/Text';
|
|
import { YTNode } from '../helpers';
|
|
|
|
class ItemSectionHeader extends YTNode {
|
|
static type = 'ItemSectionHeader';
|
|
|
|
title: Text;
|
|
|
|
constructor(data: any) {
|
|
super();
|
|
this.title = new Text(data.title);
|
|
}
|
|
}
|
|
|
|
export default ItemSectionHeader; |