UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

7 lines (6 loc) 284 B
import type { DragItem } from './iDragItem'; export interface IRowDragItem extends DragItem { /** The default text that would be applied to this Drag Element */ defaultTextValue: string; } export type RowDragTextFunc = (params: IRowDragItem, dragItemCount: number) => string;