hennus-api
Version:
Esta es una libreria para el bot Hennus
34 lines (33 loc) • 673 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Ready = void 0;
const user_1 = require("../user");
class Ready {
constructor(data, client) {
Object.defineProperty(this, "data", {
value: data
});
Object.defineProperty(this, "client", {
value: client
});
}
;
get user() {
return new user_1.User(this.data.user, this.client);
}
;
get aplication() {
return this.data.application;
}
;
get guilds() {
return this.data.guilds;
}
;
get toJson() {
return this.data;
}
;
}
exports.Ready = Ready;
;