UNPKG

@ucloud-fe/react-components

Version:
12 lines (11 loc) 461 B
import React, { ReactNode } from 'react'; import type { TooltipProps } from '../../components/Tooltip'; interface TableRowProps { record: any; contextMenu?: (record: any, hideContextMenu: () => void) => ReactNode; draggable?: boolean; 'data-row-key'?: string | number; rowTooltip?: (record: any) => TooltipProps; } declare const _default: React.MemoExoticComponent<({ ...restProps }: TableRowProps) => JSX.Element>; export default _default;