@types/chrome 0.0.163 → 0.0.164

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.
Files changed (3) hide show
  1. chrome/README.md +1 -1
  2. chrome/index.d.ts +10 -1
  3. 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: Thu, 04 Nov 2021 15:01:20 GMT
11
+ * Last updated: Mon, 15 Nov 2021 19:01:24 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
@@ -2042,7 +2042,16 @@ declare namespace chrome.declarativeContent {
2042
2042
  constructor(options: PageStateMatcherProperties);
2043
2043
  }
2044
2044
 
2045
- /** Declarative event action that shows the extension's page action while the corresponding conditions are met. */
2045
+ /**
2046
+ * Declarative event action that enables the extension's action while the corresponding conditions are met.
2047
+ * Manifest v3.
2048
+ */
2049
+ export class ShowAction { }
2050
+
2051
+ /**
2052
+ * Declarative event action that shows the extension's page action while the corresponding conditions are met.
2053
+ * Manifest v2.
2054
+ */
2046
2055
  export class ShowPageAction { }
2047
2056
 
2048
2057
  /** Declarative event action that changes the icon of the page action while the corresponding conditions are met. */
chrome/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/chrome",
3
- "version": "0.0.163",
3
+ "version": "0.0.164",
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",
@@ -98,6 +98,6 @@
98
98
  "@types/filesystem": "*",
99
99
  "@types/har-format": "*"
100
100
  },
101
- "typesPublisherContentHash": "df61c999cd8799c3394d14be5688ce2983588774b1ecfaab9392e3ce448e8ed8",
101
+ "typesPublisherContentHash": "3bacf41c8f9f8cfa1d6368ac74b02c3b935e043645ca3e62f2a4abbcd6d8a0f6",
102
102
  "typeScriptVersion": "3.7"
103
103
  }