@@ -761,7 +761,7 @@ interface ProgressEventInit extends EventInit {
761761}
762762
763763interface PushSubscriptionOptionsInit {
764- applicationServerKey?: any ;
764+ applicationServerKey?: BufferSource | null ;
765765 userVisibleOnly?: boolean;
766766}
767767
@@ -771,7 +771,7 @@ interface RegistrationOptions {
771771
772772interface RequestInit {
773773 signal?: AbortSignal;
774- body?: any ;
774+ body?: Blob | BufferSource | FormData | string | null ;
775775 cache?: RequestCache;
776776 credentials?: RequestCredentials;
777777 headers?: HeadersInit;
@@ -1089,7 +1089,7 @@ interface RTCTransportStats extends RTCStats {
10891089}
10901090
10911091interface ScopedCredentialDescriptor {
1092- id: any ;
1092+ id: BufferSource ;
10931093 transports?: Transport[];
10941094 type: ScopedCredentialType;
10951095}
@@ -7544,7 +7544,7 @@ declare var MediaKeyMessageEvent: {
75447544
75457545interface MediaKeys {
75467546 createSession(sessionType?: MediaKeySessionType): MediaKeySession;
7547- setServerCertificate(serverCertificate: any ): Promise<void>;
7547+ setServerCertificate(serverCertificate: BufferSource ): Promise<void>;
75487548}
75497549
75507550declare var MediaKeys: {
@@ -7558,10 +7558,10 @@ interface MediaKeySession extends EventTarget {
75587558 readonly keyStatuses: MediaKeyStatusMap;
75597559 readonly sessionId: string;
75607560 close(): Promise<void>;
7561- generateRequest(initDataType: string, initData: any ): Promise<void>;
7561+ generateRequest(initDataType: string, initData: BufferSource ): Promise<void>;
75627562 load(sessionId: string): Promise<boolean>;
75637563 remove(): Promise<void>;
7564- update(response: any ): Promise<void>;
7564+ update(response: BufferSource ): Promise<void>;
75657565}
75667566
75677567declare var MediaKeySession: {
@@ -7572,8 +7572,8 @@ declare var MediaKeySession: {
75727572interface MediaKeyStatusMap {
75737573 readonly size: number;
75747574 forEach(callback: ForEachCallback): void;
7575- get(keyId: any ): MediaKeyStatus;
7576- has(keyId: any ): boolean;
7575+ get(keyId: BufferSource ): MediaKeyStatus;
7576+ has(keyId: BufferSource ): boolean;
75777577}
75787578
75797579declare var MediaKeyStatusMap: {
@@ -12312,8 +12312,8 @@ declare var WaveShaperNode: {
1231212312};
1231312313
1231412314interface WebAuthentication {
12315- getAssertion(assertionChallenge: any , options?: AssertionOptions): Promise<WebAuthnAssertion>;
12316- makeCredential(accountInformation: Account, cryptoParameters: ScopedCredentialParameters[], attestationChallenge: any , options?: ScopedCredentialOptions): Promise<ScopedCredentialInfo>;
12315+ getAssertion(assertionChallenge: BufferSource , options?: AssertionOptions): Promise<WebAuthnAssertion>;
12316+ makeCredential(accountInformation: Account, cryptoParameters: ScopedCredentialParameters[], attestationChallenge: BufferSource , options?: ScopedCredentialOptions): Promise<ScopedCredentialInfo>;
1231712317}
1231812318
1231912319declare var WebAuthentication: {
@@ -14853,7 +14853,7 @@ interface ErrorEventHandler {
1485314853 (message: string, filename?: string, lineno?: number, colno?: number, error?: Error): void;
1485414854}
1485514855interface ForEachCallback {
14856- (keyId: any , status: MediaKeyStatus): void;
14856+ (keyId: BufferSource , status: MediaKeyStatus): void;
1485714857}
1485814858interface FrameRequestCallback {
1485914859 (time: number): void;
@@ -15309,7 +15309,7 @@ declare function removeEventListener<K extends keyof WindowEventMap>(type: K, li
1530915309declare function removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
1531015310type AAGUID = string;
1531115311type AlgorithmIdentifier = string | Algorithm;
15312- type BodyInit = any ;
15312+ type BodyInit = Blob | BufferSource | FormData | string ;
1531315313type ByteString = string;
1531415314type ConstrainBoolean = boolean | ConstrainBooleanParameters;
1531515315type ConstrainDOMString = string | string[] | ConstrainDOMStringParameters;
0 commit comments