chrome-types 0.1.365 → 0.1.366
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 +17 -2
- package/index.d.ts +17 -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 Tue Jul 29 2025 22:33:46 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 8fc08dc1e4b41e34e61c484dce298abd7826252f
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -26579,6 +26579,21 @@ declare namespace chrome {
|
|
|
26579
26579
|
default_path: string;
|
|
26580
26580
|
}
|
|
26581
26581
|
|
|
26582
|
+
/**
|
|
26583
|
+
* Defines the possible alignment for the side panel in the browser UI.
|
|
26584
|
+
*
|
|
26585
|
+
* @since Pending
|
|
26586
|
+
*/
|
|
26587
|
+
export type Side = "left" | "right";
|
|
26588
|
+
|
|
26589
|
+
/**
|
|
26590
|
+
* @since Pending
|
|
26591
|
+
*/
|
|
26592
|
+
export interface PanelLayout {
|
|
26593
|
+
|
|
26594
|
+
side: Side;
|
|
26595
|
+
}
|
|
26596
|
+
|
|
26582
26597
|
export interface PanelOptions {
|
|
26583
26598
|
|
|
26584
26599
|
/**
|
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 Tue Jul 29 2025 22:33:41 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 8fc08dc1e4b41e34e61c484dce298abd7826252f
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -20695,6 +20695,21 @@ declare namespace chrome {
|
|
|
20695
20695
|
default_path: string;
|
|
20696
20696
|
}
|
|
20697
20697
|
|
|
20698
|
+
/**
|
|
20699
|
+
* Defines the possible alignment for the side panel in the browser UI.
|
|
20700
|
+
*
|
|
20701
|
+
* @since Pending
|
|
20702
|
+
*/
|
|
20703
|
+
export type Side = "left" | "right";
|
|
20704
|
+
|
|
20705
|
+
/**
|
|
20706
|
+
* @since Pending
|
|
20707
|
+
*/
|
|
20708
|
+
export interface PanelLayout {
|
|
20709
|
+
|
|
20710
|
+
side: Side;
|
|
20711
|
+
}
|
|
20712
|
+
|
|
20698
20713
|
export interface PanelOptions {
|
|
20699
20714
|
|
|
20700
20715
|
/**
|
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": "a3458d0ac4086e4e"
|
|
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.366"
|
|
20
20
|
}
|