@etsoo/appscript
Version:
Applications shared TypeScript framework
17 lines (16 loc) • 725 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserIdentifierType = void 0;
/**
* User identifier type
* 用户编号类型
*/
var UserIdentifierType;
(function (UserIdentifierType) {
UserIdentifierType[UserIdentifierType["Email"] = 1] = "Email";
UserIdentifierType[UserIdentifierType["Mobile"] = 2] = "Mobile";
UserIdentifierType[UserIdentifierType["Wechat"] = 3] = "Wechat";
UserIdentifierType[UserIdentifierType["Alipay"] = 4] = "Alipay";
UserIdentifierType[UserIdentifierType["Google"] = 5] = "Google";
UserIdentifierType[UserIdentifierType["Microsoft"] = 6] = "Microsoft";
})(UserIdentifierType || (exports.UserIdentifierType = UserIdentifierType = {}));