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.
11 lines (10 loc) • 470 B
TypeScript
import * as React from "react";
import { SurveyQuestionElementBase } from "./reactquestion_element";
import { QuestionRatingModel } from "survey-core";
export declare class SurveyQuestionRating extends SurveyQuestionElementBase {
constructor(props: any);
protected get question(): QuestionRatingModel;
handleOnClick(event: any): void;
protected renderItem(item: any, index: Number): React.JSX.Element;
protected renderElement(): React.JSX.Element;
}