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) • 315 B
TypeScript
import * as React from "react";
import { SurveyQuestionBoolean } from "./boolean";
export declare class SurveyQuestionBooleanRadio extends SurveyQuestionBoolean {
constructor(props: any);
private renderRadioItem;
handleOnChange: (event: any) => void;
protected renderElement(): React.JSX.Element;
}