Files
v0.gar.dev/lib/tic-tac-toe/cell-state.ts
2020-02-10 23:43:54 +02:00

5 lines
85 B
TypeScript

type Token = 'x' | 'o';
type CellState = null | Token;
export { CellState, Token };