ng2-qgrid
Version:
Angular Grid
28 lines (23 loc) • 476 B
TypeScript
import { ColumnModel } from '../column-type/column.model';
import { PipePivot } from '../pipe/pipe.item';
/**
* A class that represent a raw data to render.
*/
export declare interface ViewModel {
/**
* List of data rows to render.
*/
rows?: any[];
/**
* The last row of columns that should be rendered.
*/
columns?: ColumnModel[];
/**
* List of nodes to render.
*/
nodes?: Node[];
/**
* Pivoted data structure to render.
*/
pivot?: PipePivot;
}