UNPKG

@ginstone/nga-api

Version:

30 lines (29 loc) 780 B
"use strict"; /** * 账号状态 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.AccountStatus = void 0; var AccountStatus; (function (AccountStatus) { /** * 未激活 */ AccountStatus[AccountStatus["NOT_ACTIVATED"] = 0] = "NOT_ACTIVATED"; /** * 已激活 */ AccountStatus[AccountStatus["ACTIVATED"] = 1] = "ACTIVATED"; /** * 被斩杀 */ AccountStatus[AccountStatus["NUKED"] = -1] = "NUKED"; /** * 已注销 */ AccountStatus[AccountStatus["UNREGISTERED"] = -5] = "UNREGISTERED"; /** * 已激活(手机/关联) */ AccountStatus[AccountStatus["ACTIVATED_PHONE"] = 4] = "ACTIVATED_PHONE"; })(AccountStatus = exports.AccountStatus || (exports.AccountStatus = {}));