@webref/idl 3.25.0 → 3.25.1
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/FedCM.idl +0 -16
- package/fetch.idl +1 -0
- package/package.json +1 -1
- package/webcodecs.idl +4 -4
package/FedCM.idl
CHANGED
|
@@ -64,19 +64,3 @@ dictionary IdentityProviderConfig {
|
|
|
64
64
|
required USVString clientId;
|
|
65
65
|
USVString nonce;
|
|
66
66
|
};
|
|
67
|
-
|
|
68
|
-
dictionary IdentityCredentialLogoutRPsRequest {
|
|
69
|
-
required USVString url;
|
|
70
|
-
required USVString accountId;
|
|
71
|
-
};
|
|
72
|
-
|
|
73
|
-
[Exposed=Window, SecureContext]
|
|
74
|
-
partial interface IdentityCredential {
|
|
75
|
-
static Promise<undefined> logoutRPs(sequence<IdentityCredentialLogoutRPsRequest> logoutRequests);
|
|
76
|
-
};
|
|
77
|
-
|
|
78
|
-
[Exposed=Window, SecureContext]
|
|
79
|
-
interface IdentityProvider {
|
|
80
|
-
static undefined login();
|
|
81
|
-
static undefined logout();
|
|
82
|
-
};
|
package/fetch.idl
CHANGED
|
@@ -12,6 +12,7 @@ interface Headers {
|
|
|
12
12
|
undefined append(ByteString name, ByteString value);
|
|
13
13
|
undefined delete(ByteString name);
|
|
14
14
|
ByteString? get(ByteString name);
|
|
15
|
+
sequence<ByteString> getSetCookie();
|
|
15
16
|
boolean has(ByteString name);
|
|
16
17
|
undefined set(ByteString name, ByteString value);
|
|
17
18
|
iterable<ByteString, ByteString>;
|
package/package.json
CHANGED
package/webcodecs.idl
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// Source: WebCodecs (https://w3c.github.io/webcodecs/)
|
|
5
5
|
|
|
6
6
|
[Exposed=(Window,DedicatedWorker), SecureContext]
|
|
7
|
-
interface AudioDecoder {
|
|
7
|
+
interface AudioDecoder : EventTarget {
|
|
8
8
|
constructor(AudioDecoderInit init);
|
|
9
9
|
|
|
10
10
|
readonly attribute CodecState state;
|
|
@@ -28,7 +28,7 @@ dictionary AudioDecoderInit {
|
|
|
28
28
|
callback AudioDataOutputCallback = undefined(AudioData output);
|
|
29
29
|
|
|
30
30
|
[Exposed=(Window,DedicatedWorker), SecureContext]
|
|
31
|
-
interface VideoDecoder {
|
|
31
|
+
interface VideoDecoder : EventTarget {
|
|
32
32
|
constructor(VideoDecoderInit init);
|
|
33
33
|
|
|
34
34
|
readonly attribute CodecState state;
|
|
@@ -52,7 +52,7 @@ dictionary VideoDecoderInit {
|
|
|
52
52
|
callback VideoFrameOutputCallback = undefined(VideoFrame output);
|
|
53
53
|
|
|
54
54
|
[Exposed=(Window,DedicatedWorker), SecureContext]
|
|
55
|
-
interface AudioEncoder {
|
|
55
|
+
interface AudioEncoder : EventTarget {
|
|
56
56
|
constructor(AudioEncoderInit init);
|
|
57
57
|
|
|
58
58
|
readonly attribute CodecState state;
|
|
@@ -82,7 +82,7 @@ dictionary EncodedAudioChunkMetadata {
|
|
|
82
82
|
};
|
|
83
83
|
|
|
84
84
|
[Exposed=(Window,DedicatedWorker), SecureContext]
|
|
85
|
-
interface VideoEncoder {
|
|
85
|
+
interface VideoEncoder : EventTarget {
|
|
86
86
|
constructor(VideoEncoderInit init);
|
|
87
87
|
|
|
88
88
|
readonly attribute CodecState state;
|