@jupyterlab/mainmenu
Version:
JupyterLab - Main Menu
23 lines (19 loc) • 550 B
text/typescript
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import type { IRankedMenu } from '@jupyterlab/ui-components';
import { RankedMenu } from '@jupyterlab/ui-components';
/**
* An interface for a Tabs menu.
*/
export interface ITabsMenu extends IRankedMenu {}
/**
* An extensible Tabs menu for the application.
*/
export class TabsMenu extends RankedMenu implements ITabsMenu {
/**
* Construct the tabs menu.
*/
constructor(options: IRankedMenu.IOptions) {
super(options);
}
}