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.
19 lines (18 loc) • 828 B
TypeScript
import * as React from "react";
import { ReactSurveyElement, SurveyQuestionUncontrolledElement } from "./reactquestion_element";
import { QuestionCommentModel, TextAreaModel } from "survey-core";
export declare class SurveyQuestionComment extends SurveyQuestionUncontrolledElement<QuestionCommentModel> {
private renderCharacterCounter;
constructor(props: any);
protected renderElement(): React.JSX.Element;
}
export declare class SurveyQuestionCommentItem extends ReactSurveyElement {
private textAreaModel;
constructor(props: any);
protected canRender(): boolean;
protected getTextAreaModel(): TextAreaModel;
protected renderElement(): React.JSX.Element;
}
export declare class SurveyQuestionOtherValueItem extends SurveyQuestionCommentItem {
protected getTextAreaModel(): TextAreaModel;
}