UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

14 lines (13 loc) 474 B
import type { StickyOffsets, FixedType } from '../interface'; export interface FixedInfo { fixLeft: number | false; fixRight: number | false; lastFixLeft: boolean; firstFixRight: boolean; lastFixRight: boolean; firstFixLeft: boolean; isSticky: boolean; } export declare function getCellFixedInfo(colStart: number, colEnd: number, columns: readonly { fixed?: FixedType; }[], stickyOffsets: StickyOffsets, direction: 'ltr' | 'rtl'): FixedInfo;