chrome-types 0.1.188 → 0.1.190
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 +45 -2
- package/index.d.ts +42 -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 Fri Apr 28 2023 22:27:41 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at ab1ac2cee252f4a4850c67e056d3b44b3fae38cb
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -3552,6 +3552,7 @@ declare namespace chrome {
|
|
|
3552
3552
|
* @chrome-manifest bluetooth
|
|
3553
3553
|
* @chrome-platform-apps
|
|
3554
3554
|
* @chrome-platform chromeos
|
|
3555
|
+
* @chrome-platform lacros
|
|
3555
3556
|
* @chrome-platform win
|
|
3556
3557
|
* @chrome-platform mac
|
|
3557
3558
|
*/
|
|
@@ -3876,6 +3877,7 @@ declare namespace chrome {
|
|
|
3876
3877
|
* @chrome-platform-apps
|
|
3877
3878
|
* @chrome-platform chromeos
|
|
3878
3879
|
* @chrome-platform linux
|
|
3880
|
+
* @chrome-platform lacros
|
|
3879
3881
|
* @chrome-platform win
|
|
3880
3882
|
* @chrome-platform mac
|
|
3881
3883
|
*/
|
|
@@ -4935,6 +4937,7 @@ declare namespace chrome {
|
|
|
4935
4937
|
* @chrome-manifest bluetooth
|
|
4936
4938
|
* @chrome-platform-apps
|
|
4937
4939
|
* @chrome-platform chromeos
|
|
4940
|
+
* @chrome-platform lacros
|
|
4938
4941
|
* @chrome-platform win
|
|
4939
4942
|
* @chrome-platform mac
|
|
4940
4943
|
*/
|
|
@@ -25628,6 +25631,46 @@ declare namespace chrome {
|
|
|
25628
25631
|
options: PanelOptions,
|
|
25629
25632
|
) => void,
|
|
25630
25633
|
): void;
|
|
25634
|
+
|
|
25635
|
+
/**
|
|
25636
|
+
* Configures the extension's side panel behavior. This is an upsert operation.
|
|
25637
|
+
*
|
|
25638
|
+
* @param behavior The new behavior to be set.
|
|
25639
|
+
*/
|
|
25640
|
+
export function setPanelBehavior(
|
|
25641
|
+
|
|
25642
|
+
behavior: PanelBehavior,
|
|
25643
|
+
): Promise<void>;
|
|
25644
|
+
|
|
25645
|
+
/**
|
|
25646
|
+
* Configures the extension's side panel behavior. This is an upsert operation.
|
|
25647
|
+
*
|
|
25648
|
+
* @param behavior The new behavior to be set.
|
|
25649
|
+
* @param callback Called when the new behavior has been set.
|
|
25650
|
+
*/
|
|
25651
|
+
export function setPanelBehavior(
|
|
25652
|
+
|
|
25653
|
+
behavior: PanelBehavior,
|
|
25654
|
+
|
|
25655
|
+
callback?: () => void,
|
|
25656
|
+
): void;
|
|
25657
|
+
|
|
25658
|
+
/**
|
|
25659
|
+
* Returns the extension's current side panel behavior.
|
|
25660
|
+
*/
|
|
25661
|
+
export function getPanelBehavior(): Promise<PanelBehavior>;
|
|
25662
|
+
|
|
25663
|
+
/**
|
|
25664
|
+
* Returns the extension's current side panel behavior.
|
|
25665
|
+
*
|
|
25666
|
+
* @param callback Called with the extension's side panel behavior.
|
|
25667
|
+
*/
|
|
25668
|
+
export function getPanelBehavior(
|
|
25669
|
+
|
|
25670
|
+
callback?: (
|
|
25671
|
+
behavior: PanelBehavior,
|
|
25672
|
+
) => void,
|
|
25673
|
+
): void;
|
|
25631
25674
|
}
|
|
25632
25675
|
|
|
25633
25676
|
/**
|
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 Fri Apr 28 2023 22:27:36 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at ab1ac2cee252f4a4850c67e056d3b44b3fae38cb
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -20065,6 +20065,46 @@ declare namespace chrome {
|
|
|
20065
20065
|
options: PanelOptions,
|
|
20066
20066
|
) => void,
|
|
20067
20067
|
): void;
|
|
20068
|
+
|
|
20069
|
+
/**
|
|
20070
|
+
* Configures the extension's side panel behavior. This is an upsert operation.
|
|
20071
|
+
*
|
|
20072
|
+
* @param behavior The new behavior to be set.
|
|
20073
|
+
*/
|
|
20074
|
+
export function setPanelBehavior(
|
|
20075
|
+
|
|
20076
|
+
behavior: PanelBehavior,
|
|
20077
|
+
): Promise<void>;
|
|
20078
|
+
|
|
20079
|
+
/**
|
|
20080
|
+
* Configures the extension's side panel behavior. This is an upsert operation.
|
|
20081
|
+
*
|
|
20082
|
+
* @param behavior The new behavior to be set.
|
|
20083
|
+
* @param callback Called when the new behavior has been set.
|
|
20084
|
+
*/
|
|
20085
|
+
export function setPanelBehavior(
|
|
20086
|
+
|
|
20087
|
+
behavior: PanelBehavior,
|
|
20088
|
+
|
|
20089
|
+
callback?: () => void,
|
|
20090
|
+
): void;
|
|
20091
|
+
|
|
20092
|
+
/**
|
|
20093
|
+
* Returns the extension's current side panel behavior.
|
|
20094
|
+
*/
|
|
20095
|
+
export function getPanelBehavior(): Promise<PanelBehavior>;
|
|
20096
|
+
|
|
20097
|
+
/**
|
|
20098
|
+
* Returns the extension's current side panel behavior.
|
|
20099
|
+
*
|
|
20100
|
+
* @param callback Called with the extension's side panel behavior.
|
|
20101
|
+
*/
|
|
20102
|
+
export function getPanelBehavior(
|
|
20103
|
+
|
|
20104
|
+
callback?: (
|
|
20105
|
+
behavior: PanelBehavior,
|
|
20106
|
+
) => void,
|
|
20107
|
+
): void;
|
|
20068
20108
|
}
|
|
20069
20109
|
|
|
20070
20110
|
/**
|
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": "9cdca4290e18f9c1"
|
|
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.190"
|
|
20
20
|
}
|