@types/web
Advanced tools
Comparing version 0.0.16 to 0.0.17
@@ -61,13 +61,7 @@ ///////////////////////////// | ||
[Symbol.iterator](): IterableIterator<[string, FormDataEntryValue]>; | ||
/** | ||
* Returns an array of key, value pairs for every entry in the list. | ||
*/ | ||
/** Returns an array of key, value pairs for every entry in the list. */ | ||
entries(): IterableIterator<[string, FormDataEntryValue]>; | ||
/** | ||
* Returns a list of keys in the list. | ||
*/ | ||
/** Returns a list of keys in the list. */ | ||
keys(): IterableIterator<string>; | ||
/** | ||
* Returns a list of values in the list. | ||
*/ | ||
/** Returns a list of values in the list. */ | ||
values(): IterableIterator<FormDataEntryValue>; | ||
@@ -98,13 +92,7 @@ } | ||
[Symbol.iterator](): IterableIterator<[string, string]>; | ||
/** | ||
* Returns an iterator allowing to go through all key/value pairs contained in this object. | ||
*/ | ||
/** Returns an iterator allowing to go through all key/value pairs contained in this object. */ | ||
entries(): IterableIterator<[string, string]>; | ||
/** | ||
* Returns an iterator allowing to go through all keys of the key/value pairs contained in this object. | ||
*/ | ||
/** Returns an iterator allowing to go through all keys of the key/value pairs contained in this object. */ | ||
keys(): IterableIterator<string>; | ||
/** | ||
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object. | ||
*/ | ||
/** Returns an iterator allowing to go through all values of the key/value pairs contained in this object. */ | ||
values(): IterableIterator<string>; | ||
@@ -114,5 +102,3 @@ } | ||
interface IDBDatabase { | ||
/** | ||
* Returns a new transaction with the given mode ("readonly" or "readwrite") and scope which can be a single object store name or an array of names. | ||
*/ | ||
/** Returns a new transaction with the given mode ("readonly" or "readwrite") and scope which can be a single object store name or an array of names. */ | ||
transaction(storeNames: string | Iterable<string>, mode?: IDBTransactionMode): IDBTransaction; | ||
@@ -161,13 +147,7 @@ } | ||
[Symbol.iterator](): IterableIterator<Node>; | ||
/** | ||
* Returns an array of key, value pairs for every entry in the list. | ||
*/ | ||
/** Returns an array of key, value pairs for every entry in the list. */ | ||
entries(): IterableIterator<[number, Node]>; | ||
/** | ||
* Returns an list of keys in the list. | ||
*/ | ||
/** Returns an list of keys in the list. */ | ||
keys(): IterableIterator<number>; | ||
/** | ||
* Returns an list of values in the list. | ||
*/ | ||
/** Returns an list of values in the list. */ | ||
values(): IterableIterator<Node>; | ||
@@ -178,13 +158,7 @@ } | ||
[Symbol.iterator](): IterableIterator<TNode>; | ||
/** | ||
* Returns an array of key, value pairs for every entry in the list. | ||
*/ | ||
/** Returns an array of key, value pairs for every entry in the list. */ | ||
entries(): IterableIterator<[number, TNode]>; | ||
/** | ||
* Returns an list of keys in the list. | ||
*/ | ||
/** Returns an list of keys in the list. */ | ||
keys(): IterableIterator<number>; | ||
/** | ||
* Returns an list of values in the list. | ||
*/ | ||
/** Returns an list of values in the list. */ | ||
values(): IterableIterator<TNode>; | ||
@@ -271,13 +245,7 @@ } | ||
[Symbol.iterator](): IterableIterator<[string, string]>; | ||
/** | ||
* Returns an array of key, value pairs for every entry in the search params. | ||
*/ | ||
/** Returns an array of key, value pairs for every entry in the search params. */ | ||
entries(): IterableIterator<[string, string]>; | ||
/** | ||
* Returns a list of keys in the search params. | ||
*/ | ||
/** Returns a list of keys in the search params. */ | ||
keys(): IterableIterator<string>; | ||
/** | ||
* Returns a list of values in the search params. | ||
*/ | ||
/** Returns a list of values in the search params. */ | ||
values(): IterableIterator<string>; | ||
@@ -284,0 +252,0 @@ } |
{ | ||
"name": "@types/web", | ||
"version": "0.0.16", | ||
"version": "0.0.17", | ||
"description": "Types for the DOM, and other web technologies in browsers", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -33,2 +33,2 @@ ### `@types/web` - Types for the DOM and most web-related APIs | ||
You can read what changed in version 0.0.16 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.16. | ||
You can read what changed in version 0.0.17 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.17. |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
802211
16394