ag-grid
Version:
Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
18 lines (17 loc) • 695 B
TypeScript
// Type definitions for ag-grid v18.1.2
// Project: http://www.ag-grid.com/
// Definitions by: Niall Crosby <https://github.com/ag-grid/>
import { GridCell } from "../entities/gridCell";
import { CellComp } from "../rendering/cellComp";
export declare class MouseEventService {
private gridOptionsWrapper;
private eGridDiv;
private static gridInstanceSequence;
private static GRID_DOM_KEY;
private gridInstanceId;
private init();
private stampDomElementWithGridInstance();
getRenderedCellForEvent(event: Event): CellComp;
isEventFromThisGrid(event: MouseEvent | KeyboardEvent): boolean;
getGridCellForEvent(event: MouseEvent | KeyboardEvent): GridCell;
}