@selfcommunity/types
Version:
Types to integrate a community created with SelfCommunity.
14 lines (13 loc) • 512 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SCCommentsOrderBy = void 0;
/**
* Type of comments 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 = {}));