UNPKG

survey-creator-react

Version:

Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.

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