chrome-types 0.1.183 → 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 +16 -3
- package/index.d.ts +16 -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 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
|
|
|
@@ -5504,6 +5504,13 @@ declare namespace chrome {
|
|
|
5504
5504
|
*/
|
|
5505
5505
|
dateAdded?: number;
|
|
5506
5506
|
|
|
5507
|
+
/**
|
|
5508
|
+
* When this node was last opened, in milliseconds since the epoch. Not set for folders.
|
|
5509
|
+
*
|
|
5510
|
+
* @since Pending
|
|
5511
|
+
*/
|
|
5512
|
+
dateLastUsed?: number;
|
|
5513
|
+
|
|
5507
5514
|
/**
|
|
5508
5515
|
* When the contents of this folder last changed, in milliseconds since the epoch.
|
|
5509
5516
|
*/
|
|
@@ -11290,6 +11297,7 @@ declare namespace chrome {
|
|
|
11290
11297
|
*
|
|
11291
11298
|
* @param url The URL of the resource to open.
|
|
11292
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.
|
|
11293
11301
|
* @param callback A function that is called when the resource has been successfully loaded.
|
|
11294
11302
|
*/
|
|
11295
11303
|
export function openResource(
|
|
@@ -11298,6 +11306,11 @@ declare namespace chrome {
|
|
|
11298
11306
|
|
|
11299
11307
|
lineNumber: number,
|
|
11300
11308
|
|
|
11309
|
+
/**
|
|
11310
|
+
* @since Pending
|
|
11311
|
+
*/
|
|
11312
|
+
columnNumber?: number,
|
|
11313
|
+
|
|
11301
11314
|
callback?: () => void,
|
|
11302
11315
|
): void;
|
|
11303
11316
|
}
|
|
@@ -25548,7 +25561,7 @@ declare namespace chrome {
|
|
|
25548
25561
|
path?: string;
|
|
25549
25562
|
|
|
25550
25563
|
/**
|
|
25551
|
-
* Whether the side panel should be enabled.
|
|
25564
|
+
* Whether the side panel should be enabled. This is optional. The default value is true.
|
|
25552
25565
|
*/
|
|
25553
25566
|
enabled?: boolean;
|
|
25554
25567
|
}
|
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
|
|
|
@@ -2845,6 +2845,13 @@ declare namespace chrome {
|
|
|
2845
2845
|
*/
|
|
2846
2846
|
dateAdded?: number;
|
|
2847
2847
|
|
|
2848
|
+
/**
|
|
2849
|
+
* When this node was last opened, in milliseconds since the epoch. Not set for folders.
|
|
2850
|
+
*
|
|
2851
|
+
* @since Pending
|
|
2852
|
+
*/
|
|
2853
|
+
dateLastUsed?: number;
|
|
2854
|
+
|
|
2848
2855
|
/**
|
|
2849
2856
|
* When the contents of this folder last changed, in milliseconds since the epoch.
|
|
2850
2857
|
*/
|
|
@@ -7543,6 +7550,7 @@ declare namespace chrome {
|
|
|
7543
7550
|
*
|
|
7544
7551
|
* @param url The URL of the resource to open.
|
|
7545
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.
|
|
7546
7554
|
* @param callback A function that is called when the resource has been successfully loaded.
|
|
7547
7555
|
*/
|
|
7548
7556
|
export function openResource(
|
|
@@ -7551,6 +7559,11 @@ declare namespace chrome {
|
|
|
7551
7559
|
|
|
7552
7560
|
lineNumber: number,
|
|
7553
7561
|
|
|
7562
|
+
/**
|
|
7563
|
+
* @since Pending
|
|
7564
|
+
*/
|
|
7565
|
+
columnNumber?: number,
|
|
7566
|
+
|
|
7554
7567
|
callback?: () => void,
|
|
7555
7568
|
): void;
|
|
7556
7569
|
}
|
|
@@ -19985,7 +19998,7 @@ declare namespace chrome {
|
|
|
19985
19998
|
path?: string;
|
|
19986
19999
|
|
|
19987
20000
|
/**
|
|
19988
|
-
* Whether the side panel should be enabled.
|
|
20001
|
+
* Whether the side panel should be enabled. This is optional. The default value is true.
|
|
19989
20002
|
*/
|
|
19990
20003
|
enabled?: boolean;
|
|
19991
20004
|
}
|
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
|
}
|