UNPKG

@ucloud-fe/react-components

Version:
10 lines (9 loc) 351 B
import React, { ReactNode } from 'react'; interface TableRowProps { record: any; contextMenu?: (record: any, hideContextMenu: () => void) => ReactNode; draggable?: boolean; 'data-row-key'?: string | number; } declare const _default: React.MemoExoticComponent<({ ...restProps }: TableRowProps) => JSX.Element>; export default _default;