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