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

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;
}