@skrillex1224/playwright-toolkit 2.1.223 → 2.1.224
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/README.md +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -507,7 +507,7 @@ export interface ScreenshotWatermarkifyOptions {
|
|
|
507
507
|
export interface ShareScreenCompressionOptions {
|
|
508
508
|
/** 是否启用截图压缩,默认开启。 */
|
|
509
509
|
enabled?: boolean;
|
|
510
|
-
/** 返回 base64 字符串的最大字节数,默认
|
|
510
|
+
/** 返回 base64 字符串的最大字节数,默认 5MiB。 */
|
|
511
511
|
maxBytes?: number;
|
|
512
512
|
/** maxBytes 的别名。 */
|
|
513
513
|
maxBase64Bytes?: number;
|
|
@@ -530,7 +530,7 @@ export interface ShareScreenCaptureOptions {
|
|
|
530
530
|
restore?: boolean;
|
|
531
531
|
/** 最大截图高度 (默认: 8000px) */
|
|
532
532
|
maxHeight?: number;
|
|
533
|
-
/** 返回 base64 字符串的最大字节数,默认
|
|
533
|
+
/** 返回 base64 字符串的最大字节数,默认 5MiB。 */
|
|
534
534
|
maxBytes?: number;
|
|
535
535
|
/** maxBytes 的别名。 */
|
|
536
536
|
maxBase64Bytes?: number;
|