ag-grid
Version:
Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
18 lines (17 loc) • 663 B
TypeScript
// Type definitions for ag-grid v18.1.2
// Project: http://www.ag-grid.com/
// Definitions by: Niall Crosby <https://github.com/ag-grid/>
import { Component } from "../widgets/component";
import { RowNode } from "../entities/rowNode";
import { Beans } from "./beans";
import { Column } from "../entities/column";
export declare class RowDragComp extends Component {
private readonly beans;
private readonly rowNode;
private readonly column;
private readonly cellValue;
constructor(rowNode: RowNode, column: Column, cellValue: string, beans: Beans);
private postConstruct();
private checkCompatibility();
private addDragSource();
}