scrabble-solver
Version:
Scrabble Solver 2 - Free, open-source, cross-platform, multi-language analysis tool for Scrabble, Scrabble Duel, Super Scrabble, Letter League, Literaki, and Kelimelik. Quickly find the top-scoring words using the given board and tiles.
17 lines (16 loc) • 860 B
text/typescript
export { boardInitialState } from './boardInitialState';
export { boardSlice } from './boardSlice';
export { cellFilterInitialState } from './cellFilterInitialState';
export { cellFilterSlice } from './cellFilterSlice';
export { dictionaryInitialState } from './dictionaryInitialState';
export { dictionarySlice } from './dictionarySlice';
export { rackInitialState } from './rackInitialState';
export { rackSlice } from './rackSlice';
export { resultsInitialState } from './resultsInitialState';
export { resultsSlice } from './resultsSlice';
export { settingsInitialState } from './settingsInitialState';
export { settingsSlice } from './settingsSlice';
export { solveInitialState } from './solveInitialState';
export { solveSlice } from './solveSlice';
export { verifyInitialState } from './verifyInitialState';
export { verifySlice } from './verifySlice';