UNPKG

@jonathanbuchner/minesweeper

Version:
12 lines 303 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Square { constructor(id) { this.isMine = false; this.number = null; this.isVisible = false; this.id = id; } } exports.Square = Square; //# sourceMappingURL=square.js.map