UNPKG

@selfcommunity/types

Version:

Types to integrate a community created with SelfCommunity.

24 lines (23 loc) 906 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SCContributeStatusType = exports.SCContributionType = void 0; /** * Contribute types */ var SCContributionType; (function (SCContributionType) { SCContributionType["DISCUSSION"] = "discussion"; SCContributionType["POST"] = "post"; SCContributionType["STATUS"] = "status"; SCContributionType["COMMENT"] = "comment"; })(SCContributionType = exports.SCContributionType || (exports.SCContributionType = {})); /** * Contribute status types */ var SCContributeStatusType; (function (SCContributeStatusType) { SCContributeStatusType["OPEN"] = "open"; SCContributeStatusType["IGNORED"] = "ignored"; SCContributeStatusType["HIDDEN"] = "hidden"; SCContributeStatusType["DELETED"] = "deleted"; })(SCContributeStatusType = exports.SCContributeStatusType || (exports.SCContributeStatusType = {}));