UNPKG

334 BTypeScriptView Raw
1import type { TableSticky } from '../interface';
2/** Sticky header hooks */
3export 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};