@jupyterlab/mainmenu
Version:
JupyterLab - Main Menu
15 lines • 413 B
JavaScript
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import { RankedMenu } from '@jupyterlab/ui-components';
/**
* An extensible Settings menu for the application.
*/
export class SettingsMenu extends RankedMenu {
/**
* Construct the settings menu.
*/
constructor(options) {
super(options);
}
}
//# sourceMappingURL=settings.js.map