ng2-qgrid
Version:
Angular Grid
16 lines (15 loc) • 432 B
TypeScript
/**
* A class that can be used in custom user pipe within `PaginationModel` to make server request when
* virtual scrolling is enabeld.
*
* ### Suggested Links
*
* * [Scroll View](/doc/api/scroll-view.html)
*/
export declare interface FetchModel {
/**
* Number of rows that should be skipped to get new portion of data,
* this property is filled by internal virtual scroll service.
*/
skip?: number;
}