@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
11 lines (10 loc) • 355 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import AboutChannelView from './AboutChannelView.js';
import Button from './Button.js';
export default class AboutChannel extends YTNode {
static type: string;
metadata: AboutChannelView | null;
share_channel: Button | null;
constructor(data: RawNode);
}