UNPKG

fx-form-widget

Version:
15 lines (14 loc) 367 B
import * as React from 'react'; import './index.less'; interface DetailRenderProps { dataList: any[]; column?: number; showBorder?: boolean; getAnchorInfo?: (anchorInfo: AnchorInfoType[]) => void; } type AnchorInfoType = { title: string; anchor: string; }; declare const DetailRender: React.FC<DetailRenderProps>; export default DetailRender;