UNPKG

2048-board-renderer

Version:
8 lines (7 loc) 214 B
import { Board } from '2048-engine'; interface GameBoard { htmlElement: HTMLElement; update: (newBoard: Board) => void; } declare const createBoard: (board: Board) => GameBoard; export default createBoard;