UNPKG

525 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 Settings menu.
8 */
9export interface ISettingsMenu extends IRankedMenu {}
10
11/**
12 * An extensible Settings menu for the application.
13 */
14export class SettingsMenu extends RankedMenu implements ISettingsMenu {
15 /**
16 * Construct the settings menu.
17 */
18 constructor(options: IRankedMenu.IOptions) {
19 super(options);
20 }
21}