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) • 436 B
TypeScript
import * as React from "react";
import { ReactSurveyElement } from "./reactquestion_element";
import { QuestionTagboxModel, ItemValue } from "survey-core";
export declare class SurveyQuestionTagboxItem extends ReactSurveyElement {
constructor(props: any);
protected get question(): QuestionTagboxModel;
protected get item(): ItemValue;
protected canRender(): boolean;
protected renderElement(): React.JSX.Element;
}