@freedomds/shared-pagination
Version:
FDS-Shared - Helper types for grid pagination, sorting and filtering
13 lines • 513 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var PagingInstruction = /** @class */ (function () {
function PagingInstruction(pageIndex, pageSize, totalRowCount, sortOptions) {
this.pageIndex = pageIndex;
this.pageSize = pageSize;
this.totalRowCount = totalRowCount;
this.sortOptions = sortOptions;
}
return PagingInstruction;
}());
exports.PagingInstruction = PagingInstruction;
//# sourceMappingURL=paging-instruction.js.map