@types/chrome 0.0.211 → 0.0.213

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. chrome/README.md +1 -1
  2. chrome/index.d.ts +11 -10
  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: Wed, 01 Feb 2023 20:32:42 GMT
11
+ * Last updated: Mon, 13 Feb 2023 13:32:38 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
@@ -6013,25 +6013,25 @@ declare namespace chrome.offscreen {
6013
6013
  /** The reason(s) the extension is creating the offscreen document. */
6014
6014
  export enum Reason {
6015
6015
  /** A reason used for testing purposes only. */
6016
- TESTING,
6016
+ TESTING = "TESTING",
6017
6017
  /** The offscreen document is responsible for playing audio. */
6018
- AUDIO_PLAYBACK,
6018
+ AUDIO_PLAYBACK = "AUDIO_PLAYBACK",
6019
6019
  /** The offscreen document needs to embed and script an iframe in order to modify the iframe's content. */
6020
- IFRAME_SCRIPTING,
6020
+ IFRAME_SCRIPTING = "IFRAME_SCRIPTING",
6021
6021
  /** The offscreen document needs to embed an iframe and scrape its DOM to extract information. */
6022
- DOM_SCRAPING,
6022
+ DOM_SCRAPING = "DOM_SCRAPING",
6023
6023
  /** The offscreen document needs to interact with Blob objects (including URL.createObjectURL()). */
6024
- BLOBS,
6024
+ BLOBS = "BLOBS",
6025
6025
  /** The offscreen document needs to use the DOMParser API. */
6026
- DOM_PARSER,
6026
+ DOM_PARSER = "DOM_PARSER",
6027
6027
  /** The offscreen document needs to interact with media streams from user media (e.g. getUserMedia()). */
6028
- USER_MEDIA,
6028
+ USER_MEDIA = "USER_MEDIA",
6029
6029
  /** The offscreen document needs to interact with media streams from display media (e.g. getDisplayMedia()). */
6030
- DISPLAY_MEDIA,
6030
+ DISPLAY_MEDIA = "DISPLAY_MEDIA",
6031
6031
  /** The offscreen document needs to use WebRTC APIs. */
6032
- WEB_RTC,
6032
+ WEB_RTC = "WEB_RTC",
6033
6033
  /** The offscreen document needs to interact with the clipboard APIs(e.g. Navigator.clipboard). */
6034
- CLIPBOARD
6034
+ CLIPBOARD = "CLIPBOARD"
6035
6035
  }
6036
6036
 
6037
6037
  /** The parameters describing the offscreen document to create. */
@@ -7200,6 +7200,7 @@ declare namespace chrome.runtime {
7200
7200
  | 'enterprise.networkingAttributes'
7201
7201
  | 'enterprise.platformKeys'
7202
7202
  | 'experimental'
7203
+ | 'favicon'
7203
7204
  | 'fileBrowserHandler'
7204
7205
  | 'fileSystemProvider'
7205
7206
  | 'fontSettings'
chrome/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/chrome",
3
- "version": "0.0.211",
3
+ "version": "0.0.213",
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",
@@ -88,6 +88,6 @@
88
88
  "@types/filesystem": "*",
89
89
  "@types/har-format": "*"
90
90
  },
91
- "typesPublisherContentHash": "23719af7372ea8b3372a83987789fd3e0520ecad7ce7427143568da76aa3fb4b",
91
+ "typesPublisherContentHash": "6141fe1cd64dfa3d1e465c6bdc6908d7c822cdc08ae6063ba27782aa1572f310",
92
92
  "typeScriptVersion": "4.2"
93
93
  }