UNPKG

bp-prism-game

Version:
14 lines (13 loc) 157 B
/** * The Board Model */ export interface BoardModel { /** * Width */ width: number; /** * Height */ height: number; }