chrome-types 0.1.324 → 0.1.325
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/_all.d.ts +4 -4
- package/index.d.ts +4 -4
- package/package.json +2 -2
package/_all.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Thu Dec 12 2024 13:34:32 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 5d57323b9458e03eef51fe0ccc353e0fc286f545
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -22499,7 +22499,7 @@ declare namespace chrome {
|
|
|
22499
22499
|
*/
|
|
22500
22500
|
tabId: number,
|
|
22501
22501
|
},
|
|
22502
|
-
): Promise<
|
|
22502
|
+
): Promise<Blob | undefined>;
|
|
22503
22503
|
|
|
22504
22504
|
/**
|
|
22505
22505
|
* Saves the content of the tab with given id as MHTML.
|
|
@@ -22520,7 +22520,7 @@ declare namespace chrome {
|
|
|
22520
22520
|
* @param mhtmlData The MHTML data as a Blob.
|
|
22521
22521
|
*/
|
|
22522
22522
|
callback?: (
|
|
22523
|
-
mhtmlData?:
|
|
22523
|
+
mhtmlData?: Blob,
|
|
22524
22524
|
) => void,
|
|
22525
22525
|
): void;
|
|
22526
22526
|
}
|
package/index.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Thu Dec 12 2024 13:34:27 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 5d57323b9458e03eef51fe0ccc353e0fc286f545
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -17244,7 +17244,7 @@ declare namespace chrome {
|
|
|
17244
17244
|
*/
|
|
17245
17245
|
tabId: number,
|
|
17246
17246
|
},
|
|
17247
|
-
): Promise<
|
|
17247
|
+
): Promise<Blob | undefined>;
|
|
17248
17248
|
|
|
17249
17249
|
/**
|
|
17250
17250
|
* Saves the content of the tab with given id as MHTML.
|
|
@@ -17265,7 +17265,7 @@ declare namespace chrome {
|
|
|
17265
17265
|
* @param mhtmlData The MHTML data as a Blob.
|
|
17266
17266
|
*/
|
|
17267
17267
|
callback?: (
|
|
17268
|
-
mhtmlData?:
|
|
17268
|
+
mhtmlData?: Blob,
|
|
17269
17269
|
) => void,
|
|
17270
17270
|
): void;
|
|
17271
17271
|
}
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"type": "module",
|
|
6
6
|
"name": "chrome-types",
|
|
7
7
|
"config": {
|
|
8
|
-
"build-hash": "
|
|
8
|
+
"build-hash": "7b1988601b06716b"
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"url": "https://github.com/GoogleChrome/chrome-types/issues"
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/GoogleChrome/chrome-types",
|
|
19
|
-
"version": "0.1.
|
|
19
|
+
"version": "0.1.325"
|
|
20
20
|
}
|