2
2
/// DOM APIs
3
3
/////////////////////////////
4
4
5
- interface Account {
6
- displayName: string;
7
- id: string;
8
- imageURL?: string;
9
- name?: string;
10
- rpDisplayName: string;
11
- }
12
-
13
5
interface AddEventListenerOptions extends EventListenerOptions {
14
6
once?: boolean;
15
7
passive?: boolean;
@@ -77,13 +69,6 @@ interface AnimationPlaybackEventInit extends EventInit {
77
69
timelineTime?: number | null;
78
70
}
79
71
80
- interface AssertionOptions {
81
- allowList?: ScopedCredentialDescriptor[];
82
- extensions?: WebAuthnExtensions;
83
- rpId?: string;
84
- timeoutSeconds?: number;
85
- }
86
-
87
72
interface AssignedNodesOptions {
88
73
flatten?: boolean;
89
74
}
@@ -202,15 +187,6 @@ interface ChannelSplitterOptions extends AudioNodeOptions {
202
187
numberOfOutputs?: number;
203
188
}
204
189
205
- interface ClientData {
206
- challenge: string;
207
- extensions?: WebAuthnExtensions;
208
- hashAlg: string | Algorithm;
209
- origin: string;
210
- rpId: string;
211
- tokenBinding?: string;
212
- }
213
-
214
190
interface ClientQueryOptions {
215
191
includeUncontrolled?: boolean;
216
192
type?: ClientTypes;
@@ -1669,24 +1645,6 @@ interface SVGBoundingBoxOptions {
1669
1645
stroke?: boolean;
1670
1646
}
1671
1647
1672
- interface ScopedCredentialDescriptor {
1673
- id: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null;
1674
- transports?: Transport[];
1675
- type: ScopedCredentialType;
1676
- }
1677
-
1678
- interface ScopedCredentialOptions {
1679
- excludeList?: ScopedCredentialDescriptor[];
1680
- extensions?: WebAuthnExtensions;
1681
- rpId?: string;
1682
- timeoutSeconds?: number;
1683
- }
1684
-
1685
- interface ScopedCredentialParameters {
1686
- algorithm: string | Algorithm;
1687
- type: ScopedCredentialType;
1688
- }
1689
-
1690
1648
interface ScrollIntoViewOptions extends ScrollOptions {
1691
1649
block?: ScrollLogicalPosition;
1692
1650
inline?: ScrollLogicalPosition;
@@ -1908,9 +1866,6 @@ interface WaveShaperOptions extends AudioNodeOptions {
1908
1866
oversample?: OverSampleType;
1909
1867
}
1910
1868
1911
- interface WebAuthnExtensions {
1912
- }
1913
-
1914
1869
interface WebGLContextAttributes {
1915
1870
alpha?: boolean;
1916
1871
antialias?: boolean;
@@ -14613,26 +14568,6 @@ declare var SVGZoomEvent: {
14613
14568
new(): SVGZoomEvent;
14614
14569
};
14615
14570
14616
- interface ScopedCredential {
14617
- readonly id: ArrayBuffer;
14618
- readonly type: ScopedCredentialType;
14619
- }
14620
-
14621
- declare var ScopedCredential: {
14622
- prototype: ScopedCredential;
14623
- new(): ScopedCredential;
14624
- };
14625
-
14626
- interface ScopedCredentialInfo {
14627
- readonly credential: ScopedCredential;
14628
- readonly publicKey: CryptoKey;
14629
- }
14630
-
14631
- declare var ScopedCredentialInfo: {
14632
- prototype: ScopedCredentialInfo;
14633
- new(): ScopedCredentialInfo;
14634
- };
14635
-
14636
14571
/** A screen, usually the one on which the current window is being rendered, and is obtained using window.screen. */
14637
14572
interface Screen {
14638
14573
readonly availHeight: number;
@@ -16177,28 +16112,6 @@ declare var WaveShaperNode: {
16177
16112
new(context: BaseAudioContext, options?: WaveShaperOptions): WaveShaperNode;
16178
16113
};
16179
16114
16180
- interface WebAuthentication {
16181
- getAssertion(assertionChallenge: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null, options?: AssertionOptions): Promise<WebAuthnAssertion>;
16182
- makeCredential(accountInformation: Account, cryptoParameters: ScopedCredentialParameters[], attestationChallenge: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null, options?: ScopedCredentialOptions): Promise<ScopedCredentialInfo>;
16183
- }
16184
-
16185
- declare var WebAuthentication: {
16186
- prototype: WebAuthentication;
16187
- new(): WebAuthentication;
16188
- };
16189
-
16190
- interface WebAuthnAssertion {
16191
- readonly authenticatorData: ArrayBuffer;
16192
- readonly clientData: ArrayBuffer;
16193
- readonly credential: ScopedCredential;
16194
- readonly signature: ArrayBuffer;
16195
- }
16196
-
16197
- declare var WebAuthnAssertion: {
16198
- prototype: WebAuthnAssertion;
16199
- new(): WebAuthnAssertion;
16200
- };
16201
-
16202
16115
interface WebGL2RenderingContext extends WebGL2RenderingContextBase, WebGL2RenderingContextOverloads, WebGLRenderingContextBase {
16203
16116
}
16204
16117
@@ -19870,7 +19783,6 @@ type RequestRedirect = "error" | "follow" | "manual";
19870
19783
type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
19871
19784
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
19872
19785
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
19873
- type ScopedCredentialType = "ScopedCred";
19874
19786
type ScrollBehavior = "auto" | "smooth";
19875
19787
type ScrollLogicalPosition = "center" | "end" | "nearest" | "start";
19876
19788
type ScrollRestoration = "auto" | "manual";
@@ -19884,7 +19796,6 @@ type SpeechSynthesisErrorCode = "audio-busy" | "audio-hardware" | "canceled" | "
19884
19796
type TextTrackKind = "captions" | "chapters" | "descriptions" | "metadata" | "subtitles";
19885
19797
type TextTrackMode = "disabled" | "hidden" | "showing";
19886
19798
type TouchType = "direct" | "stylus";
19887
- type Transport = "ble" | "nfc" | "usb";
19888
19799
type UserVerificationRequirement = "discouraged" | "preferred" | "required";
19889
19800
type VRDisplayEventReason = "mounted" | "navigation" | "requested" | "unmounted";
19890
19801
type VideoFacingModeEnum = "environment" | "left" | "right" | "user";
0 commit comments