survey-creator-react
Version:
Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.
11 lines (10 loc) • 331 B
TypeScript
import * as React from "react";
import { Action, Base } from "survey-core";
import { SurveyElementBase } from "survey-react-ui";
export declare class TranslateFromAction extends SurveyElementBase<{
item: Action;
}, any> {
get item(): Action;
protected getStateElement(): Base;
renderElement(): React.JSX.Element;
}