UNPKG

481 BTypeScriptView Raw
1import type { Direction, FixedType, StickyOffsets } 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 isSticky: boolean;
10}
11export declare function getCellFixedInfo(colStart: number, colEnd: number, columns: readonly {
12 fixed?: FixedType;
13}[], stickyOffsets: StickyOffsets, direction: Direction): FixedInfo;