mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-25 07:42:11 +00:00
20 lines
671 B
TypeScript
20 lines
671 B
TypeScript
export = NotificationsMenu;
|
|
declare class NotificationsMenu {
|
|
/**
|
|
* @param {import('../../core/Actions')} actions
|
|
* @param {object} response - API response.
|
|
*/
|
|
constructor(actions: import('../../core/Actions'), response: object);
|
|
/** @type {import('../classes/menus/SimpleMenuHeader')} */
|
|
header: import('../classes/menus/SimpleMenuHeader');
|
|
/** @type {import('../classes/Notification')} */
|
|
contents: import('../classes/Notification');
|
|
/**
|
|
* Retrieves next batch of notifications.
|
|
* @returns {Promise.<NotificationsMenu>}
|
|
*/
|
|
getContinuation(): Promise<NotificationsMenu>;
|
|
get page(): any;
|
|
#private;
|
|
}
|