jupyterlab-emrys
Version:
A computational environment for Jupyter. Powered by Emrys
18 lines (17 loc) • 438 B
TypeScript
import { Application } from 'phosphide/lib/core/application';
import { Inspector } from './';
/**
* The code inspector extension.
*/
export declare const inspectorExtension: {
id: string;
activate: (app: Application) => Promise<void>;
};
/**
* A service providing an interface to the code inspector.
*/
export declare const inspectorProvider: {
id: string;
provides: typeof Inspector;
resolve: () => Inspector;
};