UNPKG

rc-table

Version:
11 lines (10 loc) 334 B
import type { TableSticky } from '../interface'; /** Sticky header hooks */ export default function useSticky(sticky: boolean | TableSticky, prefixCls: string): { isSticky: boolean; offsetHeader: number; offsetSummary: number; offsetScroll: number; stickyClassName: string; container: Window | HTMLElement; };