@nebulaglitch/gcode
Version:
A library to generate gcode output
15 lines (10 loc) • 345 B
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
const command = require('../command.cjs');
class ToolSelect extends command.default {
constructor(tool = 2){
super('T', tool);
}
}
exports.default = ToolSelect;
//# sourceMappingURL=toolselect.cjs.map