UNPKG

nsn-enum

Version:

NSN枚举组件

18 lines (14 loc) 416 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AdminTypeEnum = void 0; /** 管理员类型 枚举 */ var AdminTypeEnum; exports.AdminTypeEnum = AdminTypeEnum; (function (AdminTypeEnum) { /** 系统管理员 */ AdminTypeEnum["ADMIN"] = "1"; /** 非系统管理员 */ AdminTypeEnum["GENERAL"] = "0"; })(AdminTypeEnum || (exports.AdminTypeEnum = AdminTypeEnum = {}));