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