weverse
Version:
Wrapper for weverse private API
17 lines (16 loc) • 474 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WeverseArtist = void 0;
const client_1 = require("../client");
class WeverseArtist extends (0, client_1.AssignType)() {
constructor(props, community) {
super(props);
this.community = community;
}
toJSON() {
const partial = Object.assign({}, this);
delete partial.community;
return partial;
}
}
exports.WeverseArtist = WeverseArtist;