UNPKG

@scalenc/nc-format

Version:

Library for handling TRUMPF NC file format.

19 lines 391 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MCode = void 0; /// M word statement. /// E.g. `M21` class MCode { id; constructor( /// The M code id. /// For e.g. `M21` the Id is 21. id) { this.id = id; } visit(visitor) { visitor.onMCode(this); } } exports.MCode = MCode; //# sourceMappingURL=MCode.js.map