mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-28 00:56:23 +00:00
17 lines
462 B
TypeScript
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;
|
|
}
|