UNPKG

@np-dev/youtubei-js

Version:

A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).

13 lines (12 loc) 483 B
import type { ApiResponse } from '../../core/Actions.js'; import type { IParsedResponse } from '../types/ParsedResponse.js'; import type AccountItemSection from '../classes/AccountItemSection.js'; import type AccountChannel from '../classes/AccountChannel.js'; declare class AccountInfo { #private; contents: AccountItemSection | null; footers: AccountChannel | null; constructor(response: ApiResponse); get page(): IParsedResponse; } export default AccountInfo;