UNPKG

ze-react-component-library

Version:
13 lines (12 loc) 451 B
import React from "react"; import { PropertyType, SchemaType } from "zeroetp-api-sdk"; import { TableProps } from "../Table/Table.types"; export declare type DetailProps = { schema: SchemaType; columnProperties: PropertyType[]; item: any; showRefDetail?: boolean; tableProps?: Omit<TableProps, "logicform" | "result" | "setLogicform" | "reload" | "onChange">; }; declare const Detail: React.FC<DetailProps>; export default Detail;