UNPKG

@adaptabletools/adaptable-cjs

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

12 lines (11 loc) 290 B
import type { IRowNode } from 'ag-grid-enterprise'; import { BaseContext } from './BaseContext'; /** * Context provided for per Row callbacks */ export interface AdaptableRowContext<TData = any> extends BaseContext { /** * The current Row */ rowNode: IRowNode<TData>; }