jupyterlab-emrys
Version:
A computational environment for Jupyter. Powered by Emrys
12 lines (11 loc) • 423 B
TypeScript
import { Application } from 'phosphide/lib/core/application';
import { DocumentRegistry } from '../docregistry';
import { RenderMime } from '../rendermime';
/**
* The editor handler extension.
*/
export declare const markdownHandlerExtension: {
id: string;
requires: (typeof DocumentRegistry | typeof RenderMime)[];
activate: (app: Application, registry: DocumentRegistry, rendermime: RenderMime) => void;
};