UNPKG

othello.js

Version:

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

8 lines (7 loc) 132 B
/** * A status of a stone type. */ export declare class StoneStatus { count: number; constructor(count: number); }