chore: BrowserPoolInfo comments

This commit is contained in:
karishmas6
2024-06-01 08:56:52 +05:30
parent fc675f4ba2
commit 8ae020b93b

View File

@@ -1,11 +1,19 @@
import { RemoteBrowser } from "./RemoteBrowser";
import logger from "../../logger";
/**
* @category Types
*/
interface BrowserPoolInfo {
/**
* The instance of remote browser.
*/
browser: RemoteBrowser,
/**
* States if the browser's instance is being actively used.
* Helps to persist the progress on the frontend when the application has been reloaded.
* @default false
*/
active: boolean,
}