feat: pool dictionary
This commit is contained in:
@@ -21,3 +21,13 @@ interface BrowserPoolInfo {
|
|||||||
userId: string,
|
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,
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user