UNPKG

ag-grid

Version:

Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components

10 lines (9 loc) 394 B
// Type definitions for ag-grid v18.1.2 // Project: http://www.ag-grid.com/ // Definitions by: Niall Crosby <https://github.com/ag-grid/> import { Column } from "../entities/column"; import { RowNode } from "../entities/rowNode"; export interface IContextMenuFactory { showMenu(node: RowNode, column: Column, value: any, mouseEvent: MouseEvent | Touch): void; hideActiveMenu(): void; }