Sha256: ae296ad1ced4c7b4963e3ee23ecf780e8d0837e94577435f83cc75bae72aa6df
Contents?: true
Size: 838 Bytes
Versions: 2
Compression:
Stored size: 838 Bytes
Contents
import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type RichTextEditorProps = { aria?: { [key: string]: string; }; advancedEditor?: any; advancedEditorToolbar?: boolean; toolbarBottom?: Boolean; children?: React.ReactNode | React.ReactNode[]; className?: string; data?: { [key: string]: string; }; focus?: boolean; id?: string; inline?: boolean; extensions?: { [key: string]: string; }[]; name?: string; onChange: (html: string, text: string) => void; placeholder?: string; simple?: boolean; sticky?: boolean; template: string; value?: string; maxWidth?: string; } & GlobalProps; declare const RichTextEditor: (props: RichTextEditorProps) => JSX.Element; export default RichTextEditor;
Version data entries
2 entries across 2 versions & 1 rubygems