node-groupme
Version:
The only GroupMe API library that isn't a million years old.
15 lines • 483 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const __1 = require("..");
class FormerGroup extends __1.BaseGroup {
// formergroup needs to share all properties with group EXCEPT sendable
constructor(client, data) {
super(client, data);
this.type = __1.ChannelType.FormerGroup;
}
rejoin() {
throw new Error('Method not implemented.');
}
}
exports.default = FormerGroup;
//# sourceMappingURL=FormerGroup.js.map