/**
 * The Board Model
 */
export interface BoardModel {
    /**
     * Width
     */
    width: number;
    /**
     * Height
     */
    height: number;
}
