UNPKG

@sklinet/strapi-plugin-tinymce

Version:

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

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