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.
20 lines (18 loc) • 462 B
text/typescript
import { type Bingo } from './Bingo';
import { type BonusJson } from './BonusJson';
import { type Game } from './Game';
import { type Locale } from './Locale';
import { type TileConfig } from './TileConfig';
export interface ConfigJson {
bingo: Bingo;
blankScore: number;
blanksCount: number;
boardHeight: number;
boardWidth: number;
bonuses: BonusJson[];
game: Game;
locale: Locale;
name: string;
rackSize: number;
tiles: TileConfig[];
}