@jupyterlab/mainmenu
Version:
JupyterLab - Main Menu
17 lines (16 loc) • 460 B
TypeScript
import type { IRankedMenu } from '@jupyterlab/ui-components';
import { RankedMenu } from '@jupyterlab/ui-components';
/**
* An interface for a Settings menu.
*/
export interface ISettingsMenu extends IRankedMenu {
}
/**
* An extensible Settings menu for the application.
*/
export declare class SettingsMenu extends RankedMenu implements ISettingsMenu {
/**
* Construct the settings menu.
*/
constructor(options: IRankedMenu.IOptions);
}