UNPKG

othello.js

Version:

An simple easy-to-use othello game implementation with TypeScript.

11 lines (10 loc) 258 B
import type { CellNums, CellTypes } from "../definition"; /** * The status of a cell. */ export declare class CellStatus { type?: CellTypes; x?: CellNums; y?: CellNums; constructor(type?: CellTypes, x?: CellNums, y?: CellNums); }