@types/webworker 0.0.22 → 0.0.24
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.
- package/README.md +1 -1
- package/index.d.ts +5 -5
- package/package.json +1 -1
- package/ts5.5/index.d.ts +5 -5
- package/ts5.6/index.d.ts +5 -5
package/README.md
CHANGED
|
@@ -45,4 +45,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
45
45
|
|
|
46
46
|
## Deploy Metadata
|
|
47
47
|
|
|
48
|
-
You can read what changed in version 0.0.
|
|
48
|
+
You can read what changed in version 0.0.24 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fwebworker%400.0.24.
|
package/index.d.ts
CHANGED
|
@@ -3947,7 +3947,7 @@ interface Event {
|
|
|
3947
3947
|
*/
|
|
3948
3948
|
initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void;
|
|
3949
3949
|
/**
|
|
3950
|
-
* The **`preventDefault()`** method of the Event interface tells the user agent that
|
|
3950
|
+
* The **`preventDefault()`** method of the Event interface tells the user agent that the event is being explicitly handled, so its default action, such as page scrolling, link navigation, or pasting text, should not be taken.
|
|
3951
3951
|
*
|
|
3952
3952
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/preventDefault)
|
|
3953
3953
|
*/
|
|
@@ -5163,13 +5163,13 @@ interface IDBIndex {
|
|
|
5163
5163
|
*
|
|
5164
5164
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
|
|
5165
5165
|
*/
|
|
5166
|
-
getAll(
|
|
5166
|
+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
|
|
5167
5167
|
/**
|
|
5168
5168
|
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
|
|
5169
5169
|
*
|
|
5170
5170
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
|
|
5171
5171
|
*/
|
|
5172
|
-
getAllKeys(
|
|
5172
|
+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
|
|
5173
5173
|
/**
|
|
5174
5174
|
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
|
|
5175
5175
|
*
|
|
@@ -5345,13 +5345,13 @@ interface IDBObjectStore {
|
|
|
5345
5345
|
*
|
|
5346
5346
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
|
|
5347
5347
|
*/
|
|
5348
|
-
getAll(
|
|
5348
|
+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
|
|
5349
5349
|
/**
|
|
5350
5350
|
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
|
|
5351
5351
|
*
|
|
5352
5352
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
|
|
5353
5353
|
*/
|
|
5354
|
-
getAllKeys(
|
|
5354
|
+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
|
|
5355
5355
|
/**
|
|
5356
5356
|
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
|
|
5357
5357
|
*
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -3947,7 +3947,7 @@ interface Event {
|
|
|
3947
3947
|
*/
|
|
3948
3948
|
initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void;
|
|
3949
3949
|
/**
|
|
3950
|
-
* The **`preventDefault()`** method of the Event interface tells the user agent that
|
|
3950
|
+
* The **`preventDefault()`** method of the Event interface tells the user agent that the event is being explicitly handled, so its default action, such as page scrolling, link navigation, or pasting text, should not be taken.
|
|
3951
3951
|
*
|
|
3952
3952
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/preventDefault)
|
|
3953
3953
|
*/
|
|
@@ -5163,13 +5163,13 @@ interface IDBIndex {
|
|
|
5163
5163
|
*
|
|
5164
5164
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
|
|
5165
5165
|
*/
|
|
5166
|
-
getAll(
|
|
5166
|
+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
|
|
5167
5167
|
/**
|
|
5168
5168
|
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
|
|
5169
5169
|
*
|
|
5170
5170
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
|
|
5171
5171
|
*/
|
|
5172
|
-
getAllKeys(
|
|
5172
|
+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
|
|
5173
5173
|
/**
|
|
5174
5174
|
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
|
|
5175
5175
|
*
|
|
@@ -5345,13 +5345,13 @@ interface IDBObjectStore {
|
|
|
5345
5345
|
*
|
|
5346
5346
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
|
|
5347
5347
|
*/
|
|
5348
|
-
getAll(
|
|
5348
|
+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
|
|
5349
5349
|
/**
|
|
5350
5350
|
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
|
|
5351
5351
|
*
|
|
5352
5352
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
|
|
5353
5353
|
*/
|
|
5354
|
-
getAllKeys(
|
|
5354
|
+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
|
|
5355
5355
|
/**
|
|
5356
5356
|
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
|
|
5357
5357
|
*
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -3947,7 +3947,7 @@ interface Event {
|
|
|
3947
3947
|
*/
|
|
3948
3948
|
initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void;
|
|
3949
3949
|
/**
|
|
3950
|
-
* The **`preventDefault()`** method of the Event interface tells the user agent that
|
|
3950
|
+
* The **`preventDefault()`** method of the Event interface tells the user agent that the event is being explicitly handled, so its default action, such as page scrolling, link navigation, or pasting text, should not be taken.
|
|
3951
3951
|
*
|
|
3952
3952
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/preventDefault)
|
|
3953
3953
|
*/
|
|
@@ -5163,13 +5163,13 @@ interface IDBIndex {
|
|
|
5163
5163
|
*
|
|
5164
5164
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAll)
|
|
5165
5165
|
*/
|
|
5166
|
-
getAll(
|
|
5166
|
+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
|
|
5167
5167
|
/**
|
|
5168
5168
|
* The **`getAllKeys()`** method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the `result` of the request object.
|
|
5169
5169
|
*
|
|
5170
5170
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getAllKeys)
|
|
5171
5171
|
*/
|
|
5172
|
-
getAllKeys(
|
|
5172
|
+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
|
|
5173
5173
|
/**
|
|
5174
5174
|
* The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
|
|
5175
5175
|
*
|
|
@@ -5345,13 +5345,13 @@ interface IDBObjectStore {
|
|
|
5345
5345
|
*
|
|
5346
5346
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
|
|
5347
5347
|
*/
|
|
5348
|
-
getAll(
|
|
5348
|
+
getAll(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<any[]>;
|
|
5349
5349
|
/**
|
|
5350
5350
|
* The `getAllKeys()` method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
|
|
5351
5351
|
*
|
|
5352
5352
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAllKeys)
|
|
5353
5353
|
*/
|
|
5354
|
-
getAllKeys(
|
|
5354
|
+
getAllKeys(queryOrOptions?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
|
|
5355
5355
|
/**
|
|
5356
5356
|
* The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
|
|
5357
5357
|
*
|