UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

23 lines 841 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); // export const SET_LAST_KEYS = 'SET_LAST_KEYS' exports.SET_JOBS_PAGINATION = 'SET_JOBS_PAGINATION'; exports.PAGE_FORWARDS = 'PAGE_FORWARDS'; exports.PAGE_BACKWARDS = 'PAGE_BACKWARDS'; exports.RESET_PAGINATION = 'RESET_PAGINATION'; exports.setJobsPagination = function (lastKeys, canPageForwards, canPageBack) { return ({ type: exports.SET_JOBS_PAGINATION, lastKeys: lastKeys, canPageForwards: canPageForwards, canPageBack: canPageBack, }); }; exports.resetPagination = function () { return ({ type: exports.RESET_PAGINATION }); }; exports.pageForwards = function () { return ({ type: exports.PAGE_FORWARDS }); }; exports.pageBackwards = function () { return ({ type: exports.PAGE_BACKWARDS }); }; //# sourceMappingURL=pagination.js.map