We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Editor is the data model to be passed to <AnyEditorComponents editor={editor} />
Editor
<AnyEditorComponents editor={editor} />
interface EditorProps { tabId: string filePath: string gitBlame: object cm: CodeMirror } interface Editor { id: string tabId: string filePath: string get file(): File // return file base on this.filePath get content(): string // short cut to this.file.content gitBlame: { show: boolean data: Any[] } update(editorProps: EditorProps): void }