chore: PoolDictionary comments

This commit is contained in:
karishmas6
2024-06-01 08:57:10 +05:30
parent 8ae020b93b
commit a7aca9c1a4

View File

@@ -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,
}