UNPKG

501 BPlain TextView Raw
1// Copyright (c) Jupyter Development Team.
2// Distributed under the terms of the Modified BSD License.
3
4import { IRankedMenu, RankedMenu } from '@jupyterlab/ui-components';
5
6/**
7 * An interface for a Tabs menu.
8 */
9export interface ITabsMenu extends IRankedMenu {}
10
11/**
12 * An extensible Tabs menu for the application.
13 */
14export class TabsMenu extends RankedMenu implements ITabsMenu {
15 /**
16 * Construct the tabs menu.
17 */
18 constructor(options: IRankedMenu.IOptions) {
19 super(options);
20 }
21}