@types/sharedworker 0.0.108 → 0.0.109
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 +2 -0
- package/package.json +1 -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.109 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.109.
|
package/index.d.ts
CHANGED
|
@@ -504,6 +504,7 @@ interface RequestInit {
|
|
|
504
504
|
method?: string;
|
|
505
505
|
/** A string to indicate whether the request will use CORS, or will be restricted to same-origin URLs. Sets request's mode. */
|
|
506
506
|
mode?: RequestMode;
|
|
507
|
+
priority?: RequestPriority;
|
|
507
508
|
/** A string indicating whether request follows redirects, results in an error upon encountering a redirect, or returns the redirect (in an opaque fashion). Sets request's redirect. */
|
|
508
509
|
redirect?: RequestRedirect;
|
|
509
510
|
/** A string whose value is a same-origin URL, "about:client", or the empty string, to set request's referrer. */
|
|
@@ -8641,6 +8642,7 @@ type RequestCache = "default" | "force-cache" | "no-cache" | "no-store" | "only-
|
|
|
8641
8642
|
type RequestCredentials = "include" | "omit" | "same-origin";
|
|
8642
8643
|
type RequestDestination = "" | "audio" | "audioworklet" | "document" | "embed" | "font" | "frame" | "iframe" | "image" | "manifest" | "object" | "paintworklet" | "report" | "script" | "sharedworker" | "style" | "track" | "video" | "worker" | "xslt";
|
|
8643
8644
|
type RequestMode = "cors" | "navigate" | "no-cors" | "same-origin";
|
|
8645
|
+
type RequestPriority = "auto" | "high" | "low";
|
|
8644
8646
|
type RequestRedirect = "error" | "follow" | "manual";
|
|
8645
8647
|
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
|
|
8646
8648
|
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
|