systelab-components
Version:
systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.
10 lines (9 loc) • 350 B
TypeScript
import { GridOptions } from 'ag-grid-community';
export declare class GridContextMenuActionData<T> {
elementId: string;
actionId: string;
data: T;
gridOptions: GridOptions;
multipleSelectedData?: Array<T>;
constructor(elementId: string, actionId: string, data: T, gridOptions: GridOptions, multipleSelectedData?: Array<T>);
}