diff --git a/libraries/lookup-by-path/src/LookupByPath.ts b/libraries/lookup-by-path/src/LookupByPath.ts index b1b1e9cec1..63868c0a67 100644 --- a/libraries/lookup-by-path/src/LookupByPath.ts +++ b/libraries/lookup-by-path/src/LookupByPath.ts @@ -9,6 +9,7 @@ interface IPathTrieNode { * The value that exactly matches the current relative path */ value: TItem | undefined; + /** * Child nodes by subfolder */ @@ -20,6 +21,7 @@ interface IPrefixEntry { * The prefix that was matched */ prefix: string; + /** * The index of the first character after the matched prefix */ @@ -36,10 +38,12 @@ export interface IPrefixMatch { * The item that matched the prefix */ value: TItem; + /** * The index of the first character after the matched prefix */ index: number; + /** * The last match found (with a shorter prefix), if any */ @@ -135,6 +139,7 @@ export interface IReadonlyLookupByPath extends Iterable<[strin * ``` */ entries(query?: string, delimiter?: string): IterableIterator<[string, TItem]>; + /** * Iterates over the entries in this trie. * @@ -183,10 +188,12 @@ export class LookupByPath implements IReadonlyLookupByPath; + /** * The number of entries in this trie. */