UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

17 lines (16 loc) 549 B
import React from 'react'; import type { RichTextProps } from './types'; export default class RichTextControl extends React.Component<RichTextProps, any> { static defaultProps: Partial<RichTextProps>; state: { focused: boolean; }; config: any; constructor(props: RichTextProps); handleFocus(): void; handleBlur(): void; handleChange(value: any, submitOnChange?: boolean, changeImmediately?: boolean): void; render(): JSX.Element; } export declare class RichTextControlRenderer extends RichTextControl { }