ContextMenuRenderParams

TypeScript
type ContextMenuRenderParams = {
  adaptableApi: AdaptableApi;
  currentView: AdaptableComputedTableView | AdaptableComputedPivotView;
  menu: ContextMenu;
  items: Exclude<MenuProps['items'], undefined>;
  column?: AdaptableTableColumn;
  rowInfo?: InfiniteTableRowInfo<any>;
  cellValue: any;
};
References

AdaptableApi