@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
14 lines (13 loc) • 503 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.SCCommentsOrderBy = void 0;
/**
* Type of ordering
*/
var SCCommentsOrderBy;
(function (SCCommentsOrderBy) {
SCCommentsOrderBy["ADDED_AT_DESC"] = "-added_at";
SCCommentsOrderBy["ADDED_AT_ASC"] = "added_at";
SCCommentsOrderBy["CONNECTION_DESC"] = "-connection";
SCCommentsOrderBy["CONNECTION_ASC"] = "connection";
})(SCCommentsOrderBy = exports.SCCommentsOrderBy || (exports.SCCommentsOrderBy = {}));
;