diff --git a/common/src/types/GameBoard.ts b/common/src/types/GameBoard.ts index 2ae5343..5660880 100644 --- a/common/src/types/GameBoard.ts +++ b/common/src/types/GameBoard.ts @@ -1 +1,3 @@ -export type Board = (string|null)[]; \ No newline at end of file +export type GamePiece = string | null; + +export type Board = GamePiece[]; \ No newline at end of file