@jupyterlab/mainmenu
Version:
JupyterLab - Main Menu
17 lines • 501 B
JavaScript
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import { RankedMenu } from '@jupyterlab/ui-components';
import { SemanticCommand } from '@jupyterlab/apputils';
/**
* An extensible Help menu for the application.
*/
export class HelpMenu extends RankedMenu {
/**
* Construct the help menu.
*/
constructor(options) {
super(options);
this.getKernel = new SemanticCommand();
}
}
//# sourceMappingURL=help.js.map