UNPKG

oom-editor

Version:

Awsome markdown editor for oom community!

12 lines (11 loc) 421 B
import React from "react"; export default interface EditorTextAreaModel { content: string; preview: string; cursorPositionStart: number; cursorPositionEnd: number; onChange: (e: React.ChangeEvent<HTMLTextAreaElement>) => void; onFocus: (e: React.FocusEvent<HTMLTextAreaElement>) => void; onBlur: (e: React.FocusEvent<HTMLTextAreaElement>) => void; setContent: (content: string) => void; }