minishouyin/node_modules/rc-table/lib/stickyScrollBar.d.ts

13 lines
410 B
TypeScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
import * as React from 'react';
interface StickyScrollBarProps {
scrollBodyRef: React.RefObject<HTMLDivElement>;
onScroll: (params: {
scrollLeft?: number;
}) => void;
offsetScroll: number;
container: HTMLElement | Window;
direction: string;
}
declare const _default: React.ForwardRefExoticComponent<StickyScrollBarProps & React.RefAttributes<unknown>>;
export default _default;