survey-react-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
14 lines (13 loc) • 550 B
TypeScript
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;
}