mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 11:02:10 +00:00
14 lines
304 B
TypeScript
14 lines
304 B
TypeScript
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);
|
|
}
|
|
} |