UNPKG

@ginstone/nga-api

Version:

15 lines (14 loc) 288 B
"use strict"; /** * 用户组 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.UserGroup = void 0; class UserGroup { constructor(raw) { this.name = raw[0]; this.data = raw[1]; this.id = raw[2]; } } exports.UserGroup = UserGroup;