@up-group-ui/react-controls
Version:
Up shared react controls
12 lines (11 loc) • 430 B
TypeScript
/// <reference types="react" />
import { BaseControlComponent } from '../_Common/BaseControl/BaseControl';
import { UpRichTextProps } from './types';
export default class UpRichText extends BaseControlComponent<UpRichTextProps, string> {
static defaultProps: UpRichTextProps;
constructor(p: any, c: any);
showError(): any;
showSuccess(): boolean;
renderControl(): JSX.Element;
getValue(event: any): any;
}