node-groupme
Version:
The only GroupMe API library that isn't a million years old.
17 lines • 494 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const __1 = require("..");
class PollManager extends __1.BaseManager {
constructor(client, group) {
super(client, __1.Poll);
this.group = group;
}
create(question, options, settings) {
throw new Error('Method not implemented.');
}
fetch(id) {
throw new Error('Method not implemented.');
}
}
exports.default = PollManager;
//# sourceMappingURL=PollManager.js.map