UNPKG
@jharrilim/game-of-life
Version:
latest (0.3.1)
0.3.1
0.3.0
Game of life in CLI
github.com/jharrilim/game-of-life
jharrilim/game-of-life
@jharrilim/game-of-life
/
dist
/
Cell.d.ts
11 lines
•
275 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Point
}
from
"./Point"
;
export
declare
class
Cell
{
private
_state;
private
_position;
constructor
(
x
:
number
,
y
:
number
);
readonly
position
:
Point
;
readonly
isAlive
:
boolean
;
die
():
void
;
live
():
void
; }
//# sourceMappingURL=Cell.d.ts.map