UNPKG

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