chrome-types 0.1.184 → 0.1.185
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 +8 -2
- package/index.d.ts +8 -2
- 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 12 2023 22:27:20 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 266c0fbe32a6598d9d461b361f817e31f22601e3
|
|
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
|
}
|
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 12 2023 22:27:15 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 266c0fbe32a6598d9d461b361f817e31f22601e3
|
|
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
|
}
|
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": "e2c5a1d7e48e70a7"
|
|
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.185"
|
|
20
20
|
}
|