You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
350 B
7 lines
350 B
import { TrieNode } from './TrieNode'; |
|
import { TrieRefNode } from './trieRef'; |
|
/** |
|
* An iterator that will emit TrieRefNodes mostly in descending frequency |
|
* @param root Root of the Trie -- a DAWG is preferred to keep the number of duplicates down. |
|
*/ |
|
export declare function convertToTrieRefNodes(root: TrieNode): IterableIterator<TrieRefNode>;
|
|
|