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.
9 lines (8 loc) • 392 B
TypeScript
import * as React from "react";
import { QuestionRatingModel } from "survey-core";
import { SurveyQuestionDropdownBase } from "./dropdown-base";
export * from "./components/rating/rating-dropdown-item";
export declare class SurveyQuestionRatingDropdown extends SurveyQuestionDropdownBase<QuestionRatingModel> {
constructor(props: any);
protected renderElement(): React.JSX.Element;
}