UNPKG

focus-pro

Version:

focus-pro 中台前端组件库

12 lines (11 loc) 250 B
import { FC } from 'react'; type LinkObj = { href: string; text?: string; }; interface DisplayProps { text: string | LinkObj | (LinkObj | string)[]; fieldProps?: any; } declare const Display: FC<DisplayProps>; export default Display;