@selfcommunity/types
Version:
Types to integrate a community created with SelfCommunity.
11 lines (10 loc) • 370 B
JavaScript
/**
* Type of comments ordering
*/
export 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 || (SCCommentsOrderBy = {}));