@webref/idl 3.65.2 → 3.65.3
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/digital-credentials.idl +1 -0
- package/dom.idl +1 -1
- package/package.json +1 -1
- package/webtransport.idl +1 -0
package/digital-credentials.idl
CHANGED
|
@@ -31,6 +31,7 @@ dictionary DigitalCredentialCreateRequest {
|
|
|
31
31
|
|
|
32
32
|
[Exposed=Window, SecureContext]
|
|
33
33
|
interface DigitalCredential : Credential {
|
|
34
|
+
[Default] object toJSON();
|
|
34
35
|
readonly attribute DOMString protocol;
|
|
35
36
|
[SameObject] readonly attribute object data;
|
|
36
37
|
static boolean userAgentAllowsProtocol(DOMString protocol);
|
package/dom.idl
CHANGED
|
@@ -412,7 +412,7 @@ dictionary ShadowRootInit {
|
|
|
412
412
|
SlotAssignmentMode slotAssignment = "named";
|
|
413
413
|
boolean clonable = false;
|
|
414
414
|
boolean serializable = false;
|
|
415
|
-
CustomElementRegistry customElementRegistry;
|
|
415
|
+
CustomElementRegistry? customElementRegistry = null;
|
|
416
416
|
};
|
|
417
417
|
|
|
418
418
|
[Exposed=Window,
|
package/package.json
CHANGED
package/webtransport.idl
CHANGED
|
@@ -156,6 +156,7 @@ interface WebTransportBidirectionalStream {
|
|
|
156
156
|
[Exposed=*, SecureContext]
|
|
157
157
|
interface WebTransportWriter : WritableStreamDefaultWriter {
|
|
158
158
|
Promise<undefined> atomicWrite(optional any chunk);
|
|
159
|
+
undefined commit();
|
|
159
160
|
};
|
|
160
161
|
|
|
161
162
|
[Exposed=(Window,Worker), Serializable, SecureContext]
|