scrabble-solver
Version:
Scrabble Solver 2 - Free, open-source, cross-platform, multi-language analysis tool for Scrabble, Scrabble Duel, Super Scrabble, Letter League, Crossplay, Literaki, and Kelimelik. Quickly find the top-scoring words using the given board and tiles.
22 lines (20 loc) • 694 B
text/typescript
import type { BoardState } from './board';
import type { CellFiltersState } from './cellFilters';
import type { DictionaryState } from './dictionary';
import type { HoveredTileState } from './hoveredTile';
import type { RackState } from './rack';
import type { ResultsState } from './results';
import type { SettingsState } from './settings';
import type { SolveState } from './solve';
import type { VerifyState } from './verify';
export type RootState = {
board: BoardState;
cellFilters: CellFiltersState;
dictionary: DictionaryState;
hoveredTile: HoveredTileState;
rack: RackState;
results: ResultsState;
settings: SettingsState;
solve: SolveState;
verify: VerifyState;
};