linkmore-design
Version:
🌈 🚀lm组件库。🚀
13 lines (12 loc) • 320 B
TypeScript
import React from 'react';
interface IProps {
dataSource?: any[];
width?: number;
onResize?: () => any;
dataIndex?: string;
onResizeStop?: () => any;
[key: string]: any;
}
/** 排序的表头 */
declare const ResizableHeight: (props: IProps) => React.JSX.Element;
export default ResizableHeight;