innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
11 lines (10 loc) • 385 B
TypeScript
import AccountChannel from './AccountChannel.js';
import AccountItemSection from './AccountItemSection.js';
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
export default class AccountSectionList extends YTNode {
static type: string;
contents: AccountItemSection | null;
footers: AccountChannel | null;
constructor(data: RawNode);
}