UNPKG

survey-creator-react

Version:

Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.

15 lines (14 loc) 548 B
import * as React from "react"; import { PropertyGridViewModel } from "survey-creator-core"; import { Base } from "survey-core"; import { SurveyElementBase } from "survey-react-ui"; interface IPropertyGridComponentProps { model: PropertyGridViewModel; } export declare class PropertyGridComponent extends SurveyElementBase<IPropertyGridComponentProps, any> { get model(): PropertyGridViewModel; protected getStateElement(): Base; canRender(): boolean; renderElement(): React.JSX.Element; } export default PropertyGridComponent;