UNPKG

411 BTypeScriptView Raw
1import { IRankedMenu, RankedMenu } from '@jupyterlab/ui-components';
2/**
3 * An interface for a Settings menu.
4 */
5export interface ISettingsMenu extends IRankedMenu {
6}
7/**
8 * An extensible Settings menu for the application.
9 */
10export declare class SettingsMenu extends RankedMenu implements ISettingsMenu {
11 /**
12 * Construct the settings menu.
13 */
14 constructor(options: IRankedMenu.IOptions);
15}