UNPKG

right-angled

Version:

Lightweight and easy to use angular data grids. Integrates with your markup and styles rather than generating its own.

29 lines 704 B
import { Pager } from '../../core/pager'; import { ListResponse } from '../../core/list-response'; /** * Implements {@link Pager} contract and represents list without any paging mechanics. * @note This type is configured to use with {@link FiltersService}. */ export declare class NullObjectPager implements Pager { /** * @inheritdoc */ appendedOnLoad: boolean; /** * @inheritdoc */ totalCount: number; /** * @inheritdoc */ loadedCount: number; /** * @inheritdoc */ processResponse(response: ListResponse<any> | any[]): void; /** * @inheritdoc */ reset(): void; } //# sourceMappingURL=null-object-pager.d.ts.map