jupyterlab-emrys
Version:
A computational environment for Jupyter. Powered by Emrys
14 lines (13 loc) • 584 B
TypeScript
import { ServiceManager } from 'jupyter-js-services';
import { Application } from 'phosphide/lib/core/application';
import { Inspector } from '../inspector';
import { MainMenu } from '../mainmenu/plugin';
import { RenderMime } from '../rendermime';
/**
* The console extension.
*/
export declare const consoleExtension: {
id: string;
requires: (typeof ServiceManager | typeof RenderMime | typeof MainMenu | typeof Inspector)[];
activate: (app: Application, services: ServiceManager, rendermime: RenderMime, mainMenu: MainMenu, inspector: Inspector) => Promise<void>;
};