ze-react-component-library
Version:
ZeroETP React Component Library
13 lines (12 loc) • 451 B
TypeScript
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;