// Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. /** * The command IDs used by the help plugin. */ export namespace CommandIDs { export const open: string = 'help-jupyterlab:open'; export const activate: string = 'help-jupyterlab:activate'; export const close: string = 'help-jupyterlab:close'; export const show: string = 'help-jupyterlab:show'; export const hide: string = 'help-jupyterlab:hide'; export const toggle: string = 'help-jupyterlab:toggle'; export const launchClassic: string = 'classic-notebook:launchClassic'; };