UNPKG

@kamilmielnik/trie

Version:

Trie data structure implementation in TypeScript. Highly performant. No dependencies. Built for a Scrabble Solver.

9 lines (8 loc) 199 B
/** * Represents end of a node in serialized format. */ export declare const CLOSE_PARENS = ")"; /** * Represents start of a node in serialized format. */ export declare const OPEN_PARENS = "(";