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.
12 lines (11 loc) • 502 B
TypeScript
import * as React from "react";
import { SurveyQuestionUncontrolledElement } from "./reactquestion_element";
import { QuestionTextModel } from "survey-core";
export declare class SurveyQuestionText extends SurveyQuestionUncontrolledElement<QuestionTextModel> {
constructor(props: any);
protected renderInput(): React.JSX.Element;
protected renderElement(): React.JSX.Element;
protected setValueCore(newValue: any): void;
protected getValueCore(): any;
private renderDataList;
}