Skip to content

Commit cccc5e4

Browse files
committed
npm run build && npm run baseline-accept
1 parent d803e50 commit cccc5e4

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

baselines/dom.generated.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1677,6 +1677,7 @@ interface RequestInit {
16771677
cache?: RequestCache;
16781678
/** A string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL. Sets request's credentials. */
16791679
credentials?: RequestCredentials;
1680+
duplex?: RequestDuplex;
16801681
/** A Headers object, an object literal, or an array of two-item arrays to set request's headers. */
16811682
headers?: HeadersInit;
16821683
/** A cryptographic hash of the resource to be fetched by request. Sets request's integrity. */
@@ -28600,6 +28601,7 @@ type RemotePlaybackState = "connected" | "connecting" | "disconnected";
2860028601
type RequestCache = "default" | "force-cache" | "no-cache" | "no-store" | "only-if-cached" | "reload";
2860128602
type RequestCredentials = "include" | "omit" | "same-origin";
2860228603
type RequestDestination = "" | "audio" | "audioworklet" | "document" | "embed" | "font" | "frame" | "iframe" | "image" | "manifest" | "object" | "paintworklet" | "report" | "script" | "sharedworker" | "style" | "track" | "video" | "worker" | "xslt";
28604+
type RequestDuplex = "half";
2860328605
type RequestMode = "cors" | "navigate" | "no-cors" | "same-origin";
2860428606
type RequestPriority = "auto" | "high" | "low";
2860528607
type RequestRedirect = "error" | "follow" | "manual";

baselines/serviceworker.generated.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,7 @@ interface RequestInit {
537537
cache?: RequestCache;
538538
/** A string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL. Sets request's credentials. */
539539
credentials?: RequestCredentials;
540+
duplex?: RequestDuplex;
540541
/** A Headers object, an object literal, or an array of two-item arrays to set request's headers. */
541542
headers?: HeadersInit;
542543
/** A cryptographic hash of the resource to be fetched by request. Sets request's integrity. */
@@ -8651,6 +8652,7 @@ type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origi
86518652
type RequestCache = "default" | "force-cache" | "no-cache" | "no-store" | "only-if-cached" | "reload";
86528653
type RequestCredentials = "include" | "omit" | "same-origin";
86538654
type RequestDestination = "" | "audio" | "audioworklet" | "document" | "embed" | "font" | "frame" | "iframe" | "image" | "manifest" | "object" | "paintworklet" | "report" | "script" | "sharedworker" | "style" | "track" | "video" | "worker" | "xslt";
8655+
type RequestDuplex = "half";
86548656
type RequestMode = "cors" | "navigate" | "no-cors" | "same-origin";
86558657
type RequestPriority = "auto" | "high" | "low";
86568658
type RequestRedirect = "error" | "follow" | "manual";

baselines/sharedworker.generated.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,7 @@ interface RequestInit {
503503
cache?: RequestCache;
504504
/** A string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL. Sets request's credentials. */
505505
credentials?: RequestCredentials;
506+
duplex?: RequestDuplex;
506507
/** A Headers object, an object literal, or an array of two-item arrays to set request's headers. */
507508
headers?: HeadersInit;
508509
/** A cryptographic hash of the resource to be fetched by request. Sets request's integrity. */
@@ -8654,6 +8655,7 @@ type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origi
86548655
type RequestCache = "default" | "force-cache" | "no-cache" | "no-store" | "only-if-cached" | "reload";
86558656
type RequestCredentials = "include" | "omit" | "same-origin";
86568657
type RequestDestination = "" | "audio" | "audioworklet" | "document" | "embed" | "font" | "frame" | "iframe" | "image" | "manifest" | "object" | "paintworklet" | "report" | "script" | "sharedworker" | "style" | "track" | "video" | "worker" | "xslt";
8658+
type RequestDuplex = "half";
86578659
type RequestMode = "cors" | "navigate" | "no-cors" | "same-origin";
86588660
type RequestPriority = "auto" | "high" | "low";
86598661
type RequestRedirect = "error" | "follow" | "manual";

baselines/webworker.generated.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,7 @@ interface RequestInit {
581581
cache?: RequestCache;
582582
/** A string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL. Sets request's credentials. */
583583
credentials?: RequestCredentials;
584+
duplex?: RequestDuplex;
584585
/** A Headers object, an object literal, or an array of two-item arrays to set request's headers. */
585586
headers?: HeadersInit;
586587
/** A cryptographic hash of the resource to be fetched by request. Sets request's integrity. */
@@ -9391,6 +9392,7 @@ type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origi
93919392
type RequestCache = "default" | "force-cache" | "no-cache" | "no-store" | "only-if-cached" | "reload";
93929393
type RequestCredentials = "include" | "omit" | "same-origin";
93939394
type RequestDestination = "" | "audio" | "audioworklet" | "document" | "embed" | "font" | "frame" | "iframe" | "image" | "manifest" | "object" | "paintworklet" | "report" | "script" | "sharedworker" | "style" | "track" | "video" | "worker" | "xslt";
9395+
type RequestDuplex = "half";
93949396
type RequestMode = "cors" | "navigate" | "no-cors" | "same-origin";
93959397
type RequestPriority = "auto" | "high" | "low";
93969398
type RequestRedirect = "error" | "follow" | "manual";

0 commit comments

Comments
 (0)