@ginstone/nga-api
Version:
18 lines (17 loc) • 505 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AvatarBuff = void 0;
/**
* 头像buff中id 和文件名映射
* 头像映射关系来自 : <a href="https://img4.nga.178.com/common_res/js_commonui.js?5871262">官方js</a>
*/
class AvatarBuff {
constructor(id, filename) {
this.id = id;
this.filename = filename;
}
getUrl() {
return 'https://img4.nga.178.com/ngabbs/face/' + this.filename;
}
}
exports.AvatarBuff = AvatarBuff;