UNPKG

@sklinet/strapi-plugin-tinymce

Version:

Strapi custom field with a customized build of TinyMCE richtext editor.

10 lines (9 loc) 332 B
interface TinyEditorProps { onChange: (e: any) => void; name: string; value?: string; disabled?: boolean; disableMediaLibrary?: boolean; } declare const TinyEditor: ({ onChange, name, value, disabled, disableMediaLibrary }: TinyEditorProps) => import("react/jsx-runtime").JSX.Element; export default TinyEditor;