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.
16 lines (15 loc) • 417 B
TypeScript
import { type TileJson } from './TileJson';
export declare class Tile {
static fromJson: (json: TileJson | null) => Tile;
static readonly Null: Tile;
character: string;
isBlank: boolean;
constructor({ character, isBlank }: {
character: string;
isBlank?: boolean;
});
clone(): Tile;
equals(other: Tile): boolean;
toJson(): TileJson | null;
toString(): string;
}