@flatbiz/antd
Version:
24 lines (21 loc) • 480 B
TypeScript
import { ReactNode } from 'react';
export type TableScrollProps = {
children: ReactNode;
/**
* y轴的滚动条
*/
target?: HTMLElement;
};
/**
* 表格x轴浮动滚动条
* ```
* 使用方法
* <TableScrollbar>
* <Table/>
* </TableScrollbar>
* ```
*/
export declare const TableScrollbar: ({ children, target, ...props }: TableScrollProps) => import("react").FunctionComponentElement<{
summary: (...args: any[]) => import("react").JSX.Element;
}>;
export {};