Last active
November 21, 2022 11:48
-
-
Save nbogie/43f9818c292651f351441bc4b9affc6f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Player = "X" | "O" | |
type PosState = Player | "" | |
type BoardState = [ | |
PosState,PosState,PosState, | |
PosState,PosState,PosState, | |
PosState,PosState,PosState | |
] | |
//type WinState = "draw" | "X won" | "O won" | "not finished" | |
type WinState = {state: "draw"} | { state: "not finished"} | {state:"won", winner:Player} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment