@freedomds/shared-pagination
Version:
FDS-Shared - Helper types for grid pagination, sorting and filtering
12 lines • 356 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Filter = /** @class */ (function () {
function Filter(key, values, matchMode) {
this.key = key;
this.values = values;
this.matchMode = matchMode;
}
return Filter;
}());
exports.Filter = Filter;
//# sourceMappingURL=filter.js.map