UNPKG

ag-grid-enterprise

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

14 lines (13 loc) 536 B
import type { CellPosition } from 'ag-grid-community'; import { AbstractSelectionHandle, SelectionHandleType } from './abstractSelectionHandle'; export declare class AgRangeHandle extends AbstractSelectionHandle { protected type: SelectionHandleType; private endPosition; private rangeFixed; constructor(); protected onDrag(_: MouseEvent): void; protected shouldSkipCell(_: CellPosition): boolean; protected onDragEnd(_: MouseEvent): void; protected onDragCancel(): void; private fixRangeStartEnd; }