chrome-types 0.1.365 → 0.1.367
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 +20 -5
- package/index.d.ts +20 -5
- 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 Jul 31 2025 22:33:33 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 97f6418dca820e6ecad113dfbff9a05f9ae74534
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -12358,7 +12358,7 @@ declare namespace chrome {
|
|
|
12358
12358
|
/**
|
|
12359
12359
|
* Use the `chrome.enterprise.login` API to exit Managed Guest sessions. Note: This API is only available to extensions installed by enterprise policy in ChromeOS Managed Guest sessions.
|
|
12360
12360
|
*
|
|
12361
|
-
* @since
|
|
12361
|
+
* @since Chrome 139
|
|
12362
12362
|
* @chrome-permission enterprise.login
|
|
12363
12363
|
* @chrome-install-location policy
|
|
12364
12364
|
* @chrome-platform chromeos
|
|
@@ -13468,14 +13468,14 @@ declare namespace chrome {
|
|
|
13468
13468
|
export namespace extensionTypes {
|
|
13469
13469
|
|
|
13470
13470
|
/**
|
|
13471
|
-
* @since
|
|
13471
|
+
* @since Chrome 139
|
|
13472
13472
|
*/
|
|
13473
13473
|
export type ColorArray = [number, number, number, number];
|
|
13474
13474
|
|
|
13475
13475
|
/**
|
|
13476
13476
|
* Pixel data for an image. Must be an ImageData object; for example, from a `canvas` element.
|
|
13477
13477
|
*
|
|
13478
|
-
* @since
|
|
13478
|
+
* @since Chrome 139
|
|
13479
13479
|
*/
|
|
13480
13480
|
export type ImageDataType = ImageData;
|
|
13481
13481
|
|
|
@@ -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 Thu Jul 31 2025 22:33:28 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 97f6418dca820e6ecad113dfbff9a05f9ae74534
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -8490,7 +8490,7 @@ declare namespace chrome {
|
|
|
8490
8490
|
/**
|
|
8491
8491
|
* Use the `chrome.enterprise.login` API to exit Managed Guest sessions. Note: This API is only available to extensions installed by enterprise policy in ChromeOS Managed Guest sessions.
|
|
8492
8492
|
*
|
|
8493
|
-
* @since
|
|
8493
|
+
* @since Chrome 139
|
|
8494
8494
|
* @chrome-permission enterprise.login
|
|
8495
8495
|
* @chrome-install-location policy
|
|
8496
8496
|
* @chrome-platform chromeos
|
|
@@ -9466,14 +9466,14 @@ declare namespace chrome {
|
|
|
9466
9466
|
export namespace extensionTypes {
|
|
9467
9467
|
|
|
9468
9468
|
/**
|
|
9469
|
-
* @since
|
|
9469
|
+
* @since Chrome 139
|
|
9470
9470
|
*/
|
|
9471
9471
|
export type ColorArray = [number, number, number, number];
|
|
9472
9472
|
|
|
9473
9473
|
/**
|
|
9474
9474
|
* Pixel data for an image. Must be an ImageData object; for example, from a `canvas` element.
|
|
9475
9475
|
*
|
|
9476
|
-
* @since
|
|
9476
|
+
* @since Chrome 139
|
|
9477
9477
|
*/
|
|
9478
9478
|
export type ImageDataType = ImageData;
|
|
9479
9479
|
|
|
@@ -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": "6c7bccdfc52d9587"
|
|
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.367"
|
|
20
20
|
}
|