UNPKG

typescript-algorithms-and-datastructures

Version:
7 lines (6 loc) 150 B
export declare class Trie<T> { static KEY: string; root: any; insert(word: string): boolean; contains(word: string): boolean; }