@duell10111/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
15 lines (14 loc) • 500 B
TypeScript
import { YTNode, type ObservedArray } from '../helpers.js';
import { type RawNode } from '../index.js';
import Button from './Button.js';
import ToggleButton from './ToggleButton.js';
import Line from './Line.js';
import Text from './misc/Text.js';
export default class EntityMetadata extends YTNode {
static type: string;
title: Text;
description: Text;
buttons: ObservedArray<Button | ToggleButton> | null;
bylines: ObservedArray<Line> | null;
constructor(data: RawNode);
}