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