UNPKG

snake-cli-ts

Version:
11 lines (10 loc) 236 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Point = (function () { function Point(x, y) { this.x = x; this.y = y; } return Point; }()); exports.default = Point;