innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
14 lines (13 loc) • 423 B
TypeScript
import { YTNode, type ObservedArray } from '../helpers.js';
import { type RawNode } from '../index.js';
export default class Grid extends YTNode {
static type: string;
items: ObservedArray<YTNode>;
is_collapsible?: boolean;
visible_row_count?: string;
target_id?: string;
continuation: string | null;
header?: YTNode;
constructor(data: RawNode);
get contents(): ObservedArray<YTNode>;
}