@types/serviceworker 0.0.98 → 0.0.100
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 +8 -1
- package/package.json +1 -1
- package/ts5.5/index.d.ts +8 -1
package/README.md
CHANGED
|
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
28
28
|
|
|
29
29
|
## Deploy Metadata
|
|
30
30
|
|
|
31
|
-
You can read what changed in version 0.0.
|
|
31
|
+
You can read what changed in version 0.0.100 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.100.
|
package/index.d.ts
CHANGED
|
@@ -2193,9 +2193,12 @@ interface EXT_texture_norm16 {
|
|
|
2193
2193
|
*/
|
|
2194
2194
|
interface ErrorEvent extends Event {
|
|
2195
2195
|
readonly colno: number;
|
|
2196
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
|
|
2196
2197
|
readonly error: any;
|
|
2198
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
|
|
2197
2199
|
readonly filename: string;
|
|
2198
2200
|
readonly lineno: number;
|
|
2201
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
|
|
2199
2202
|
readonly message: string;
|
|
2200
2203
|
}
|
|
2201
2204
|
|
|
@@ -4684,7 +4687,11 @@ interface Request extends Body {
|
|
|
4684
4687
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
|
|
4685
4688
|
*/
|
|
4686
4689
|
readonly integrity: string;
|
|
4687
|
-
/**
|
|
4690
|
+
/**
|
|
4691
|
+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
|
|
4692
|
+
*
|
|
4693
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
|
|
4694
|
+
*/
|
|
4688
4695
|
readonly keepalive: boolean;
|
|
4689
4696
|
/**
|
|
4690
4697
|
* Returns request's HTTP method, which is "GET" by default.
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -2193,9 +2193,12 @@ interface EXT_texture_norm16 {
|
|
|
2193
2193
|
*/
|
|
2194
2194
|
interface ErrorEvent extends Event {
|
|
2195
2195
|
readonly colno: number;
|
|
2196
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
|
|
2196
2197
|
readonly error: any;
|
|
2198
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
|
|
2197
2199
|
readonly filename: string;
|
|
2198
2200
|
readonly lineno: number;
|
|
2201
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
|
|
2199
2202
|
readonly message: string;
|
|
2200
2203
|
}
|
|
2201
2204
|
|
|
@@ -4684,7 +4687,11 @@ interface Request extends Body {
|
|
|
4684
4687
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
|
|
4685
4688
|
*/
|
|
4686
4689
|
readonly integrity: string;
|
|
4687
|
-
/**
|
|
4690
|
+
/**
|
|
4691
|
+
* Returns a boolean indicating whether or not request can outlive the global in which it was created.
|
|
4692
|
+
*
|
|
4693
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
|
|
4694
|
+
*/
|
|
4688
4695
|
readonly keepalive: boolean;
|
|
4689
4696
|
/**
|
|
4690
4697
|
* Returns request's HTTP method, which is "GET" by default.
|