Files
icehrm/web/node_modules/rc-table/lib/utils/fixUtil.d.ts
2020-05-20 18:47:29 +02:00

13 lines
437 B
TypeScript

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