UNPKG

@wangeditor-kai/yjs-for-react

Version:

React specific components/utils for wangeditor-next-yjs.

9 lines (8 loc) 272 B
/** * @description 处理 onblur 事件 * @author wangfupeng */ import { IDomEditor } from '../../editor/interface'; import TextArea from '../TextArea'; declare function handleOnBlur(e: Event, textarea: TextArea, editor: IDomEditor): void; export default handleOnBlur;