Skip to content

Commit ee2a01a

Browse files
Rename iCharTrie.d.ts to charTrie.ts
The file will store a concrete implementation of ICharTrie.
1 parent 10f0582 commit ee2a01a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
type Char = string;
22
interface ICharTrie extends Map<Char, ICharTrie> {
3-
[headChar: string]: ICharTrie;
3+
[headChar: string]: any | ICharTrie;
44
}

0 commit comments

Comments
 (0)