UNPKG

saints-specification-nodejs

Version:
14 lines (13 loc) 225 B
export class TwoDimension { constructor(x, y) { this.x = x; this.y = y; } } export class ThreeDimension { constructor(x, y, z) { this.x = x; this.y = y; this.z = z; } }