interface EditorProps {
    editorCss?: string;
    iframeClz?: string;
    initialContent?: string;
    onEditorChange?: OnEditorEventListened;
    onFocus?: (() => void);
    onPasteImage?: ((image) => void);
    onReady?: ((actions, editor) => void);
}

Properties

editorCss?: string
iframeClz?: string
initialContent?: string
onEditorChange?: OnEditorEventListened
onFocus?: (() => void)

Type declaration

    • (): void
    • Returns void

onPasteImage?: ((image) => void)

Type declaration

    • (image): void
    • Parameters

      • image: File

      Returns void

onReady?: ((actions, editor) => void)

Type declaration

    • (actions, editor): void
    • Parameters

      Returns void