freego_api/ui/types.ts

6 lines
100 B
TypeScript

export interface Cell {
piece?: string;
terrain: boolean;
hidden: boolean;
empty: boolean;
}