@xhayper/discord-rpc
Version:
a fork of discordjs/RPC
19 lines (18 loc) • 429 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Base = void 0;
class Base {
constructor(client) {
/**
* the client instance
*/
Object.defineProperty(this, "client", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
this.client = client;
}
}
exports.Base = Base;