ng2-qgrid
Version:
Angular Grid
17 lines (13 loc) • 393 B
TypeScript
import { Command } from '../command/command';
import { Model } from '../infrastructure/model';
import { Table } from '../dom/table';
/**
* > Under Construction.
*/
export declare class RowView {
constructor(model: Model, table: Table, tagName: string);
drop: Command<{ dragData: number }>;
drag: Command<{ dragData: number }>;
canMove: boolean;
canResize: boolean;
}