1234567891011 |
- /// <reference types="react" />
- import { ControlType, EditorState } from "braft-editor";
- declare const BarftEditorPage: ({ initValue, value, onChange, controls, FloatControls }: {
- initValue?: string | undefined;
- value?: EditorState | undefined;
- onChange?: ((editorState: EditorState) => void) | undefined;
- controls?: ControlType[] | undefined;
- FloatControls?: any;
- }) => JSX.Element;
- export { BarftEditorPage as default, BarftEditorPage };
|