@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
17 lines (16 loc) • 511 B
TypeScript
import { YTNode } from '../../helpers.js';
import type { RawNode } from '../../index.js';
import NavigationEndpoint from '../NavigationEndpoint.js';
import SectionList from '../SectionList.js';
export default class AnchoredSection extends YTNode {
static type: string;
title: string;
content: SectionList | null;
endpoint: NavigationEndpoint;
category_assets: {
asset_key: string;
background_color: string;
};
category_type: string;
constructor(data: RawNode);
}