@skrillex1224/playwright-toolkit 3.0.37 → 3.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser.js +39 -105
- package/dist/browser.js.map +4 -4
- package/dist/index.cjs +248 -282
- package/dist/index.cjs.map +4 -4
- package/dist/index.js +248 -282
- package/dist/index.js.map +4 -4
- package/index.d.ts +0 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -555,15 +555,8 @@ export interface RuntimeEnvState {
|
|
|
555
555
|
browserProfileObserved: Record<string, any>;
|
|
556
556
|
}
|
|
557
557
|
|
|
558
|
-
export interface RuntimeEnvApplyExclude {
|
|
559
|
-
cookies?: string[];
|
|
560
|
-
local_storage?: string[];
|
|
561
|
-
session_storage?: string[];
|
|
562
|
-
}
|
|
563
|
-
|
|
564
558
|
export interface RuntimeEnvApplyOptions {
|
|
565
559
|
actor?: string;
|
|
566
|
-
exclude?: RuntimeEnvApplyExclude;
|
|
567
560
|
preapply?: (runtimeState: RuntimeEnvState) => RuntimeEnvState | Promise<RuntimeEnvState>;
|
|
568
561
|
}
|
|
569
562
|
|