Arno Kaimbacher
010bead723
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m0s
- add public opensearch api host
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
export default class TrieNode {
|
|
children: { [key: string]: TrieNode };
|
|
isEndOfWord: boolean;
|
|
|
|
constructor() {
|
|
this.children = {};
|
|
this.isEndOfWord = false;
|
|
}
|
|
} |