feat: pool dictionary

This commit is contained in:
amhsirak
2025-03-07 22:40:34 +05:30
parent ea43d9d604
commit ffc030d58b

View File

@@ -21,3 +21,13 @@ interface BrowserPoolInfo {
userId: string,
}
/**
* 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,
}