@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
12 lines (11 loc) • 480 B
TypeScript
import GuideSection from '../classes/GuideSection.js';
import GuideSubscriptionsSection from '../classes/GuideSubscriptionsSection.js';
import type { ObservedArray } from '../helpers.js';
import type { IGuideResponse } from '../types/index.js';
import type { IRawResponse } from '../index.js';
export default class Guide {
#private;
contents?: ObservedArray<GuideSection | GuideSubscriptionsSection>;
constructor(data: IRawResponse);
get page(): IGuideResponse;
}