UNPKG

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.

13 lines (12 loc) 264 B
export interface WordDefinitionJson { definitions: string[]; /** * Does the word have an entry in a corresponding online dictionary? */ exists: boolean; /** * Can the word be legally used in the game? */ isAllowed: boolean; word: string; }