UNPKG

@ginstone/nga-api

Version:

15 lines (14 loc) 300 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Reputation = void 0; /** * 声望数据 */ class Reputation { constructor(raw) { this.name = raw[0]; this.value = raw[1]; this.remark = raw[2]; } } exports.Reputation = Reputation;