mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-02 21:52:48 +00:00
21 lines
566 B
TypeScript
21 lines
566 B
TypeScript
export = Search;
|
|
/** @namespace */
|
|
declare class Search {
|
|
/**
|
|
* @param {object} response - API response.
|
|
* @param {import('../../core/Actions')} actions
|
|
* @param {boolean} is_continuation
|
|
* @constructor
|
|
*/
|
|
constructor(response: object, actions: import('../../core/Actions'), is_continuation: boolean);
|
|
estimated_results: any;
|
|
refinements: any;
|
|
results: any;
|
|
getContinuation(): Promise<Search>;
|
|
get has_continuation(): boolean;
|
|
get videos(): any;
|
|
get playlists(): any;
|
|
get page(): any;
|
|
#private;
|
|
}
|