survey-creator-react
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
15 lines (14 loc) • 658 B
TypeScript
import * as React from "react";
import { QuestionFileEditorModel } from "survey-creator-core";
import { SurveyQuestionText } from "survey-react-ui";
export declare class SurveyQuestionFileEditor extends SurveyQuestionText {
constructor(props: any);
protected get questionFile(): QuestionFileEditorModel;
protected getValueCore(): any;
protected renderInput(): React.JSX.Element;
protected renderFileInput(): React.JSX.Element;
protected renderButtons(): React.JSX.Element;
protected renderClearButton(): React.JSX.Element;
protected renderChooseButton(): React.JSX.Element;
protected renderElement(): React.JSX.Element;
}