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.
12 lines (11 loc) • 437 B
TypeScript
import * as React from "react";
import { SurveyElementBase } from "../../reactquestion_element";
import { QuestionFileModel, QuestionFilePage } from "survey-core";
export declare class SurveyFilePage extends SurveyElementBase<{
question: QuestionFileModel;
page: QuestionFilePage;
}, {}> {
protected get question(): QuestionFileModel;
protected get page(): any;
protected renderElement(): React.JSX.Element | null;
}