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) • 335 B
TypeScript
import * as React from "react";
import { SurveyError } from "survey-core";
export interface IQuestionErrorComponentProps {
error: SurveyError;
cssClasses: any;
element: any;
}
export declare class QuestionErrorComponent extends React.Component<IQuestionErrorComponentProps, any> {
render(): React.JSX.Element | null;
}