TypeScript/tests/baselines/reference/parser0_004152.js

18 lines
434 B
TypeScript

//// [parser0_004152.ts]
export class Game {
private position = new DisplayPosition([), 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 0], NoMove, 0);
private prevConfig: SeedCoords[][];
}
//// [parser0_004152.js]
"use strict";
exports.__esModule = true;
var Game = /** @class */ (function () {
function Game() {
this.position = new DisplayPosition([]);
}
;
return Game;
}());
exports.Game = Game;