@skrillex1224/playwright-toolkit 3.0.15 → 3.0.16
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/browser.d.ts +6 -0
- package/dist/browser.js +421 -163
- package/dist/browser.js.map +4 -4
- package/dist/index.cjs +1021 -497
- package/dist/index.cjs.map +4 -4
- package/dist/index.js +1021 -497
- package/dist/index.js.map +4 -4
- package/index.d.ts +49 -9
- package/package.json +9 -1
- package/scripts/postinstall.js +203 -0
package/browser.d.ts
CHANGED
|
@@ -6,3 +6,9 @@ export * from './index';
|
|
|
6
6
|
* Browser-specific version of the toolkit hook.
|
|
7
7
|
*/
|
|
8
8
|
export declare function usePlaywrightToolKit(): BrowserPlaywrightToolKit;
|
|
9
|
+
export declare namespace usePlaywrightToolKit {
|
|
10
|
+
const Mode: {
|
|
11
|
+
default: 'default';
|
|
12
|
+
cloak: 'cloak';
|
|
13
|
+
};
|
|
14
|
+
}
|