useSticky.d.ts 334 B

12345678910
  1. import type { TableSticky } from '../interface';
  2. /** Sticky header hooks */
  3. export default function useSticky(sticky: boolean | TableSticky, prefixCls: string): {
  4. isSticky: boolean;
  5. offsetHeader: number;
  6. offsetSummary: number;
  7. offsetScroll: number;
  8. stickyClassName: string;
  9. container: Window | HTMLElement;
  10. };