Files
YouTube.js/typings/lib/parser/youtube/History.d.ts
2022-06-10 15:06:27 -03:00

17 lines
462 B
TypeScript

export = History;
/** @namespace */
declare class History {
/**
* @param {object} page - parsed data.
* @param {import('../../core/Actions')} actions
* @param {boolean} is_continuation
* @constructor
*/
constructor(page: object, actions: import('../../core/Actions'), is_continuation: boolean);
sections: any;
getContinuation(): Promise<History>;
get has_continuation(): boolean;
get page(): any;
#private;
}