// Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. import { IEditorServices } from '@jupyterlab/codeeditor'; import { CodeMirrorEditorFactory } from './factory'; import { CodeMirrorMimeTypeService } from './mimetype'; import '../style/index.css'; export * from './mode'; export * from './editor'; export * from './factory'; export * from './mimetype'; /** * The default editor services. */ export const editorServices: IEditorServices = { factoryService: new CodeMirrorEditorFactory(), mimeTypeService: new CodeMirrorMimeTypeService() };