UNPKG

437 BTypeScriptView Raw
1import { StickyOffsets, FixedType } from '../interface';
2export interface FixedInfo {
3 fixLeft: number | false;
4 fixRight: number | false;
5 lastFixLeft: boolean;
6 firstFixRight: boolean;
7 lastFixRight: boolean;
8 firstFixLeft: boolean;
9}
10export declare function getCellFixedInfo(colStart: number, colEnd: number, columns: {
11 fixed?: FixedType;
12}[], stickyOffsets: StickyOffsets, direction: 'ltr' | 'rtl'): FixedInfo;