@evolvejs/core
Version:
An advanced Discord API wrapper with TS and JS support
16 lines (15 loc) • 385 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Channel = void 0;
class Channel {
constructor(id, type, client) {
Object.defineProperty(this, "client", {
value: client,
enumerable: false,
writable: false,
});
this.id = id;
this.type = type;
}
}
exports.Channel = Channel;