UNPKG

owl-rich-table

Version:

富文本编辑表格,react组件

13 lines (12 loc) 313 B
/** * @description * @author Huang Wenjie * @createDate 2023-10-19 */ import type { RowDataItem } from '../../types/RichTableTypes'; interface PropsType { rowDataSource: RowDataItem; rowIndex: number; } export default function Tr(props: PropsType): import("react/jsx-runtime").JSX.Element; export {};