From cf99c65b96db8fcafeb6b2cfe7ca4060d2e5368e Mon Sep 17 00:00:00 2001 From: David Michon Date: Wed, 18 Dec 2024 00:13:41 +0000 Subject: [PATCH] Normalize blank lines --- libraries/lookup-by-path/src/LookupByPath.ts | 7 +++++++ 1 file changed, 7 insertions(+) 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. */