@freedomds/shared-pagination
Version:
FDS-Shared - Helper types for grid pagination, sorting and filtering
11 lines • 399 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var SortingInstruction = /** @class */ (function () {
function SortingInstruction(column, direction) {
this.column = column;
this.direction = direction;
}
return SortingInstruction;
}());
exports.SortingInstruction = SortingInstruction;
//# sourceMappingURL=sorting-instruction.js.map