ze-react-component-library
Version:
ZeroETP React Component Library
18 lines (17 loc) • 458 B
TypeScript
import { FC } from "react";
import { PropertyType } from "zeroetp-api-sdk";
import "./index.less";
export declare const ObjectFormRenderItem: FC<{
schema: any;
props: any;
queryProperty: PropertyType;
groupby?: string;
hideIdInLabel?: boolean;
showTotal?: boolean;
type?: "select" | "autocomplete";
}>;
export declare const ObjectArrayFormRenderItem: FC<{
schema: any;
props: any;
}>;
export default ObjectFormRenderItem;