@types/chrome 0.0.284 → 0.0.286
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 +2 -2
- chrome/chrome-cast/index.d.ts +1057 -1055
- chrome/index.d.ts +9 -9
- chrome/package.json +3 -8
chrome/index.d.ts
CHANGED
@@ -9,16 +9,16 @@ interface Window {
|
|
9
9
|
chrome: typeof chrome;
|
10
10
|
}
|
11
11
|
|
12
|
-
////////////////////
|
13
|
-
// Accessibility Features
|
14
|
-
////////////////////
|
15
|
-
/**
|
16
|
-
* Use the chrome.accessibilityFeatures API to manage Chrome's accessibility features. This API relies on the ChromeSetting prototype of the type API for getting and setting individual accessibility features. In order to get feature states the extension must request accessibilityFeatures.read permission. For modifying feature state, the extension needs accessibilityFeatures.modify permission. Note that accessibilityFeatures.modify does not imply accessibilityFeatures.read permission.
|
17
|
-
* @since Chrome 37
|
18
|
-
* Permissions: "accessibilityFeatures.read"
|
19
|
-
* Important: This API works only on Chrome OS.
|
20
|
-
*/
|
21
12
|
declare namespace chrome {
|
13
|
+
////////////////////
|
14
|
+
// Accessibility Features
|
15
|
+
////////////////////
|
16
|
+
/**
|
17
|
+
* Use the chrome.accessibilityFeatures API to manage Chrome's accessibility features. This API relies on the ChromeSetting prototype of the type API for getting and setting individual accessibility features. In order to get feature states the extension must request accessibilityFeatures.read permission. For modifying feature state, the extension needs accessibilityFeatures.modify permission. Note that accessibilityFeatures.modify does not imply accessibilityFeatures.read permission.
|
18
|
+
* @since Chrome 37
|
19
|
+
* Permissions: "accessibilityFeatures.read"
|
20
|
+
* Important: This API works only on Chrome OS.
|
21
|
+
*/
|
22
22
|
export namespace accessibilityFeatures {
|
23
23
|
/** **ChromeOS only.** Spoken feedback (text-to-speech). */
|
24
24
|
export var spokenFeedback: chrome.types.ChromeSetting;
|
chrome/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/chrome",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.286",
|
4
4
|
"description": "TypeScript definitions for chrome",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome",
|
6
6
|
"license": "MIT",
|
@@ -45,11 +45,6 @@
|
|
45
45
|
"githubUsername": "bdbai",
|
46
46
|
"url": "https://github.com/bdbai"
|
47
47
|
},
|
48
|
-
{
|
49
|
-
"name": "pokutuna",
|
50
|
-
"githubUsername": "pokutuna",
|
51
|
-
"url": "https://github.com/pokutuna"
|
52
|
-
},
|
53
48
|
{
|
54
49
|
"name": "Jason Xian",
|
55
50
|
"githubUsername": "JasonXian",
|
@@ -99,6 +94,6 @@
|
|
99
94
|
"@types/har-format": "*"
|
100
95
|
},
|
101
96
|
"peerDependencies": {},
|
102
|
-
"typesPublisherContentHash": "
|
103
|
-
"typeScriptVersion": "
|
97
|
+
"typesPublisherContentHash": "33780cbea3e7c8d567f3324eda171f851e4366051ef6cf3410ab6cce8db5c7d8",
|
98
|
+
"typeScriptVersion": "5.0"
|
104
99
|
}
|