UNPKG

starboard-notebook

Version:

Starboard Notebook

7 lines (6 loc) 312 B
import { EditorView } from "@codemirror/view"; import type { Cell, Runtime } from "../../../types"; export declare function createCodeMirrorEditor(element: HTMLElement, cell: Cell, opts: { language?: string; wordWrap?: "off" | "on" | "wordWrapColumn" | "bounded"; }, runtime: Runtime): EditorView;