UNPKG

501 BJavaScriptView Raw
1// Copyright (c) Jupyter Development Team.
2// Distributed under the terms of the Modified BSD License.
3import { RankedMenu } from '@jupyterlab/ui-components';
4import { SemanticCommand } from '@jupyterlab/apputils';
5/**
6 * An extensible Help menu for the application.
7 */
8export class HelpMenu extends RankedMenu {
9 /**
10 * Construct the help menu.
11 */
12 constructor(options) {
13 super(options);
14 this.getKernel = new SemanticCommand();
15 }
16}
17//# sourceMappingURL=help.js.map
\No newline at end of file