Prechádzať zdrojové kódy

Export debugger sidebar.

Afshin T. Darian 5 rokov pred
rodič
commit
c8c3a85e5e
1 zmenil súbory, kde vykonal 2 pridanie a 1 odobranie
  1. 2 1
      src/index.ts

+ 2 - 1
src/index.ts

@@ -154,9 +154,10 @@ const notebooks: JupyterFrontEndPlugin<void> = {
 /**
  * A plugin providing a condensed sidebar UI for debugging.
  */
-const sidebar: JupyterFrontEndPlugin<DebuggerSidebar> = {
+const sidebar: JupyterFrontEndPlugin<IDebuggerSidebar> = {
   id: '@jupyterlab/debugger:sidebar',
   optional: [ILayoutRestorer],
+  provides: IDebuggerSidebar,
   autoStart: true,
   activate: (
     app: JupyterFrontEnd,