survey-creator-react
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
23 lines (22 loc) • 847 B
TypeScript
import * as React from "react";
import { Base } from "survey-core";
import { SurveyElementBase } from "survey-react-ui";
import { TextareaJsonEditorModel, JsonEditorBaseModel } from "survey-creator-core";
interface ITabJsonEditorTextareaComponentProps {
data: TextareaJsonEditorModel;
}
interface ITabJsonEditorErrorsProps {
data: JsonEditorBaseModel;
}
export declare class TabJsonEditorErrorsComponent extends SurveyElementBase<ITabJsonEditorErrorsProps, any> {
protected getStateElement(): Base;
private get model();
renderElement(): React.JSX.Element;
}
export declare class TabJsonEditorTextareaComponent extends SurveyElementBase<ITabJsonEditorTextareaComponentProps, any> {
constructor(props: any);
protected getStateElement(): Base;
private get model();
renderElement(): React.JSX.Element;
}
export {};