saints-specification-nodejs
Version:
saints specification for nodejs
19 lines (18 loc) • 422 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ThreeDimension = exports.TwoDimension = void 0;
class TwoDimension {
constructor(x, y) {
this.x = x;
this.y = y;
}
}
exports.TwoDimension = TwoDimension;
class ThreeDimension {
constructor(x, y, z) {
this.x = x;
this.y = y;
this.z = z;
}
}
exports.ThreeDimension = ThreeDimension;