UNPKG

draft-js-image-render-plugin

Version:
11 lines (10 loc) 338 B
import * as React from 'react'; import { ContentBlock, ContentState, EditorState } from 'draft-js'; interface OwnProps { block: ContentBlock; contentState: ContentState; getEditorState: () => EditorState; setEditorState: (editorState: EditorState) => void; } declare const Image: React.FC<OwnProps>; export default Image;