@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
12 lines (11 loc) • 453 B
TypeScript
import AccountChannel from './AccountChannel.js';
import AccountItemSection from './AccountItemSection.js';
import type { RawNode } from '../index.js';
import type { ObservedArray } from '../helpers.js';
import { YTNode } from '../helpers.js';
export default class AccountSectionList extends YTNode {
static type: string;
contents: ObservedArray<AccountItemSection>;
footers: ObservedArray<AccountChannel>;
constructor(data: RawNode);
}