@types/chrome 0.0.233 → 0.0.235
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.
- chrome/README.md +1 -1
- chrome/index.d.ts +11 -1
- chrome/package.json +2 -2
chrome/README.md
CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for Chrome extension development (http://
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Tue, 02 May 2023 09:32:52 GMT
|
12
12
|
* Dependencies: [@types/filesystem](https://npmjs.com/package/@types/filesystem), [@types/har-format](https://npmjs.com/package/@types/har-format)
|
13
13
|
* Global values: `chrome`
|
14
14
|
|
chrome/index.d.ts
CHANGED
@@ -4913,7 +4913,7 @@ declare namespace chrome.input.ime {
|
|
4913
4913
|
* The auto-capitalize type of the text field.
|
4914
4914
|
* @since Chrome 69.
|
4915
4915
|
*/
|
4916
|
-
|
4916
|
+
autoCapitalize: AutoCapitalizeType;
|
4917
4917
|
/**
|
4918
4918
|
* Whether text entered into the text field should be used to improve typing suggestions for the user.
|
4919
4919
|
* @since Chrome 68.
|
@@ -6906,6 +6906,16 @@ declare namespace chrome.runtime {
|
|
6906
6906
|
* @since Chrome 80.
|
6907
6907
|
*/
|
6908
6908
|
origin?: string | undefined;
|
6909
|
+
/**
|
6910
|
+
* The lifecycle the document that opened the connection is in at the time the port was created. Note that the lifecycle state of the document may have changed since port creation.
|
6911
|
+
* @since Chrome 106.
|
6912
|
+
*/
|
6913
|
+
documentLifecycle?: string | undefined;
|
6914
|
+
/**
|
6915
|
+
* A UUID of the document that opened the connection.
|
6916
|
+
* @since Chrome 106.
|
6917
|
+
*/
|
6918
|
+
documentId?: string | undefined;
|
6909
6919
|
}
|
6910
6920
|
|
6911
6921
|
/**
|
chrome/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/chrome",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.235",
|
4
4
|
"description": "TypeScript definitions for Chrome extension development",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome",
|
6
6
|
"license": "MIT",
|
@@ -93,6 +93,6 @@
|
|
93
93
|
"@types/filesystem": "*",
|
94
94
|
"@types/har-format": "*"
|
95
95
|
},
|
96
|
-
"typesPublisherContentHash": "
|
96
|
+
"typesPublisherContentHash": "eed673aa6e12427aded66c75493c968cadcfe6dfc2e0a4500ee30b29a5fd0d6a",
|
97
97
|
"typeScriptVersion": "4.3"
|
98
98
|
}
|