chrome-types 0.1.184 → 0.1.186
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 +9 -3
- package/index.d.ts +9 -3
- 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 Wed Apr 19 2023 22:29:46 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 1382885bd70c67c16c82d005e4e6337a5f42c87c
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -11297,6 +11297,7 @@ declare namespace chrome {
|
|
|
11297
11297
|
*
|
|
11298
11298
|
* @param url The URL of the resource to open.
|
|
11299
11299
|
* @param lineNumber Specifies the line number to scroll to when the resource is loaded.
|
|
11300
|
+
* @param columnNumber Specifies the column number to scroll to when the resource is loaded.
|
|
11300
11301
|
* @param callback A function that is called when the resource has been successfully loaded.
|
|
11301
11302
|
*/
|
|
11302
11303
|
export function openResource(
|
|
@@ -11305,6 +11306,11 @@ declare namespace chrome {
|
|
|
11305
11306
|
|
|
11306
11307
|
lineNumber: number,
|
|
11307
11308
|
|
|
11309
|
+
/**
|
|
11310
|
+
* @since Pending
|
|
11311
|
+
*/
|
|
11312
|
+
columnNumber?: number,
|
|
11313
|
+
|
|
11308
11314
|
callback?: () => void,
|
|
11309
11315
|
): void;
|
|
11310
11316
|
}
|
|
@@ -27700,7 +27706,7 @@ declare namespace chrome {
|
|
|
27700
27706
|
/**
|
|
27701
27707
|
* The maximum amount (in bytes) of data that can be stored in local storage, as measured by the JSON stringification of every value plus every key's length. This value will be ignored if the extension has the `unlimitedStorage` permission. Updates that would cause this limit to be exceeded fail immediately and set {@link runtime.lastError}.
|
|
27702
27708
|
*/
|
|
27703
|
-
QUOTA_BYTES:
|
|
27709
|
+
QUOTA_BYTES: 10485760,
|
|
27704
27710
|
};
|
|
27705
27711
|
|
|
27706
27712
|
/**
|
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 Wed Apr 19 2023 22:29:41 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 1382885bd70c67c16c82d005e4e6337a5f42c87c
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -7550,6 +7550,7 @@ declare namespace chrome {
|
|
|
7550
7550
|
*
|
|
7551
7551
|
* @param url The URL of the resource to open.
|
|
7552
7552
|
* @param lineNumber Specifies the line number to scroll to when the resource is loaded.
|
|
7553
|
+
* @param columnNumber Specifies the column number to scroll to when the resource is loaded.
|
|
7553
7554
|
* @param callback A function that is called when the resource has been successfully loaded.
|
|
7554
7555
|
*/
|
|
7555
7556
|
export function openResource(
|
|
@@ -7558,6 +7559,11 @@ declare namespace chrome {
|
|
|
7558
7559
|
|
|
7559
7560
|
lineNumber: number,
|
|
7560
7561
|
|
|
7562
|
+
/**
|
|
7563
|
+
* @since Pending
|
|
7564
|
+
*/
|
|
7565
|
+
columnNumber?: number,
|
|
7566
|
+
|
|
7561
7567
|
callback?: () => void,
|
|
7562
7568
|
): void;
|
|
7563
7569
|
}
|
|
@@ -21521,7 +21527,7 @@ declare namespace chrome {
|
|
|
21521
21527
|
/**
|
|
21522
21528
|
* The maximum amount (in bytes) of data that can be stored in local storage, as measured by the JSON stringification of every value plus every key's length. This value will be ignored if the extension has the `unlimitedStorage` permission. Updates that would cause this limit to be exceeded fail immediately and set {@link runtime.lastError}.
|
|
21523
21529
|
*/
|
|
21524
|
-
QUOTA_BYTES:
|
|
21530
|
+
QUOTA_BYTES: 10485760,
|
|
21525
21531
|
};
|
|
21526
21532
|
|
|
21527
21533
|
/**
|
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": "e1c63c4a8546f8b2"
|
|
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.186"
|
|
20
20
|
}
|