UNPKG

@bee-design/ui

Version:

Bee Design React UI Library.

26 lines (25 loc) 841 B
import React, { ReactNode } from 'react'; import { ComponentsProps, InternalColumnProps, SorterResult } from '../interface'; declare type TdType = { prefixCls?: string; virtualized?: boolean; stickyClassName?: string; stickyOffset?: number; components?: ComponentsProps; InnerComponentTd?: any; column?: InternalColumnProps; columnIndex?: number; currentSorter?: SorterResult; placeholder?: ReactNode; indentSize?: number; record?: any; trIndex?: number; level?: number; haveTreeData?: boolean; recordHaveChildren?: boolean; rowKey?: string; renderExpandIcon?: (record: any, rowKey: string) => ReactNode; }; declare function Td(props: TdType): JSX.Element; declare const _default: React.MemoExoticComponent<typeof Td>; export default _default;