@scalenc/nc-format
Version:
Library for handling TRUMPF NC file format.
17 lines • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.String = void 0;
/// String.
class String {
value;
constructor(
/// The value of the string.
value) {
this.value = value;
}
visit(visitor) {
visitor.onString(this);
}
}
exports.String = String;
//# sourceMappingURL=String.js.map