We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8a6e1f commit 3fd081bCopy full SHA for 3fd081b
src/types/charTrie.ts
@@ -4,6 +4,7 @@ interface CharTrieData {
4
5
export type Char = string;
6
7
+// eslint-disable-next-line no-use-before-define
8
export class CharTrie extends Map<Char, CharTrie> {
9
public static create(trieData: CharTrieData): CharTrie {
10
const trieDataPairs = Object.entries(trieData);
0 commit comments