You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
437 B
13 lines
437 B
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;
|