From a7aca9c1a43673a418a192e2334c965afe59b4ac Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 1 Jun 2024 08:57:10 +0530 Subject: [PATCH] chore: PoolDictionary comments --- server/src/browser-management/classes/BrowserPool.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/server/src/browser-management/classes/BrowserPool.ts b/server/src/browser-management/classes/BrowserPool.ts index d1b1e1b4..5d41eeb3 100644 --- a/server/src/browser-management/classes/BrowserPool.ts +++ b/server/src/browser-management/classes/BrowserPool.ts @@ -17,7 +17,12 @@ interface BrowserPoolInfo { active: boolean, } - +/** + * Dictionary of all the active remote browser's instances indexed by their id. + * The value in this dictionary is of type BrowserPoolInfo, + * which provides additional information about the browser's usage. + * @category Types + */ interface PoolDictionary { [key: string]: BrowserPoolInfo, }