UNPKG

@jharrilim/game-of-life

Version:
11 lines 275 B
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