Explorar el Código

Export debugger sidebar.

Afshin T. Darian hace 5 años
padre
commit
c8c3a85e5e
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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,