@nebulaglitch/shopbot
Version:
A library to generate shopbot output
19 lines (14 loc) • 424 B
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
const command = require('../command.cjs');
class Input extends command.default {
toString() {
return this.code + ' ' + this.args[0];
}
constructor(text){
super('INPUT');
this.args.push(text);
}
}
exports.default = Input;
//# sourceMappingURL=input.cjs.map