Add a GamePiece type

This commit is contained in:
Oliver Akins 2022-06-29 00:00:21 -06:00
parent be50ff62d9
commit 5fbbf09144
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99

View file

@ -1 +1,3 @@
export type Board = (string|null)[]; export type GamePiece = string | null;
export type Board = GamePiece[];