mirror of
https://github.com/GeorgeSG/v0.gar.dev
synced 2025-12-28 21:30:29 +00:00
5 lines
85 B
TypeScript
5 lines
85 B
TypeScript
type Token = 'x' | 'o';
|
|
type CellState = null | Token;
|
|
|
|
export { CellState, Token };
|