UNPKG

survey-react-ui

Version:

A free MIT-licensed React UI component that renders dynamic, interactive JSON-based forms and surveys. You can use it to collect responses from users and send them to your own database.

14 lines (13 loc) 550 B
import * as React from "react"; import { SurveyQuestionElementBase } from "./reactquestion_element"; import { QuestionHtmlModel } from "survey-core"; export declare class SurveyQuestionHtml extends SurveyQuestionElementBase { constructor(props: any); protected get question(): QuestionHtmlModel; componentDidMount(): void; componentWillUnmount(): void; componentDidUpdate(prevProps: any, prevState: any): void; private reactOnStrChanged; protected canRender(): boolean; protected renderElement(): React.JSX.Element; }