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 2e4f628 commit d5e4b9eCopy full SHA for d5e4b9e
src/utils.ts
@@ -49,7 +49,7 @@ type DirectoryTrieNode<T> = {
49
targets: T[]
50
}
51
52
-const createTrieNode = <T,>(): DirectoryTrieNode<T> => ({
+const createTrieNode = <T>(): DirectoryTrieNode<T> => ({
53
children: new Map<string, DirectoryTrieNode<T>>(),
54
targets: []
55
})
0 commit comments