UNPKG

445 BTypeScriptView Raw
1/**
2 * Used to keep track of memory slots used by open instances of the UI
3 * Each browser instance uses a different slot, with a max number of
4 * slots available
5 */
6export declare class BrowserSlot {
7 browserId: string;
8 lastUsed: number;
9 id: string;
10 constructor(browserId: string, offset: number);
11 static GetSlot(browserId: string): Promise<string>;
12 private static BrowserSlots;
13 private static UpdateBrowserSlots;
14}