UNPKG

survey-react-ui

Version:

A free MIT-licensed React UI component that renders dynamic, interactive JSON-based forms and surveys. You can use it to collect responses from users and send them to your own database.

11 lines (10 loc) 436 B
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; }