Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Co-authored-by: saschanaz <[email protected]>
  • Loading branch information
saschanaz and saschanaz authored Nov 25, 2023
1 parent 8c4731e commit 6f8abaf
Show file tree
Hide file tree
Showing 5 changed files with 98 additions and 53 deletions.
1 change: 1 addition & 0 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ interface AuthenticationExtensionsClientInputs {
appid?: string;
credProps?: boolean;
hmacCreateSecret?: boolean;
minPinLength?: boolean;
}

interface AuthenticationExtensionsClientOutputs {
Expand Down
2 changes: 2 additions & 0 deletions baselines/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4899,6 +4899,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: Event) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration) */
readonly registration: ServiceWorkerRegistration;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker) */
readonly serviceWorker: ServiceWorker;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/skipWaiting) */
skipWaiting(): Promise<void>;
Expand Down Expand Up @@ -8429,6 +8430,7 @@ declare var onpush: ((this: ServiceWorkerGlobalScope, ev: PushEvent) => any) | n
declare var onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: Event) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration) */
declare var registration: ServiceWorkerRegistration;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker) */
declare var serviceWorker: ServiceWorker;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/skipWaiting) */
declare function skipWaiting(): Promise<void>;
Expand Down
1 change: 1 addition & 0 deletions baselines/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5221,6 +5221,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: Event) => any) | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/registration) */
readonly registration: ServiceWorkerRegistration;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/serviceWorker) */
readonly serviceWorker: ServiceWorker;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/skipWaiting) */
skipWaiting(): Promise<void>;
Expand Down
48 changes: 40 additions & 8 deletions inputfiles/removedTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,19 @@
},
"interfaces": {
"interface": {
"Clipboard": {
"methods": {
"method": {
"read": {
"signature": {
"0": {
"param": ["formats"] // Blink-only as of 2023-11
}
}
}
}
}
},
"CSSRule": {
"constants": {
"constant": {
Expand All @@ -84,7 +97,20 @@
"complete": {
"signature": {
"0": {
"param": ["details"]
"param": ["details"] // WebKit-only as of 2023-11
}
}
}
}
}
},
"ReadableStreamBYOBReader": {
"methods": {
"method": {
"read": {
"signature": {
"0": {
"param": ["options"] // No implementations as of 2023-11
}
}
}
Expand All @@ -94,7 +120,7 @@
"ServiceWorkerGlobalScope": {
"properties": {
"property": {
"onsync": null
"onsync": null // No implementations as of 2023-11
}
}
},
Expand Down Expand Up @@ -166,14 +192,13 @@
"appidExclude": null,
"credBlob": null,
"credentialProtectionPolicy": null,
"devicePubKey": null,
"enforceCredentialProtectionPolicy": null,
"getCredBlob": null,
"hmacGetSecret": null, // No implementation as of 2022-10
"hmacGetSecret": null, // No implementation as of 2023-11
"largeBlob": null,
"minPinLength": null,
"payment": null,
"prf": null,
"supplementalPubKeys": null, // No implementation as of 2023-11
"uvm": null
}
}
Expand All @@ -182,11 +207,11 @@
"members": {
"member": {
// (same as *Inputs)
"appidExclude": null,
"devicePubKey": null,
"hmacGetSecret": null, // No implementation as of 2022-10
"appidExclude": null, // No implementation as of 2023-11
"hmacGetSecret": null, // No implementation as of 2023-11
"largeBlob": null,
"prf": null,
"supplementalPubKeys": null, // No implementation as of 2023-11
"uvm": null
}
}
Expand Down Expand Up @@ -689,6 +714,13 @@
"xrCompatible": null
}
}
},
"WebTransportSendStreamOptions": {
"members": {
"member": {
"waitUntilAvailable": null // No implementation as of 2023-11
}
}
}
}
},
Expand Down
99 changes: 54 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6f8abaf

Please sign in to comment.