@@ -42846,7 +42846,7 @@ declare namespace WebAssembly {
4284642846
4284742847 var Module: {
4284842848 prototype: Module;
42849- new(bytes: BufferSource , options?: WebAssemblyCompileOptions): Module;
42849+ new(bytes: AllowSharedBufferSource , options?: WebAssemblyCompileOptions): Module;
4285042850 /**
4285142851 * The WebAssembly.**`Module.customSections()`** static method returns a copy of the contents of all custom sections in the given module with the given string name.
4285242852 *
@@ -42997,16 +42997,16 @@ declare namespace WebAssembly {
4299742997 type ValueType = keyof ValueTypeMap;
4299842998 var JSTag: Tag;
4299942999 /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compile_static) */
43000- function compile(bytes: BufferSource , options?: WebAssemblyCompileOptions): Promise<Module>;
43000+ function compile(bytes: AllowSharedBufferSource , options?: WebAssemblyCompileOptions): Promise<Module>;
4300143001 /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compileStreaming_static) */
4300243002 function compileStreaming(source: Response | PromiseLike<Response>, options?: WebAssemblyCompileOptions): Promise<Module>;
4300343003 /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiate_static) */
43004- function instantiate(bytes: BufferSource , importObject?: Imports, options?: WebAssemblyCompileOptions): Promise<WebAssemblyInstantiatedSource>;
43004+ function instantiate(bytes: AllowSharedBufferSource , importObject?: Imports, options?: WebAssemblyCompileOptions): Promise<WebAssemblyInstantiatedSource>;
4300543005 function instantiate(moduleObject: Module, importObject?: Imports): Promise<Instance>;
4300643006 /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiateStreaming_static) */
4300743007 function instantiateStreaming(source: Response | PromiseLike<Response>, importObject?: Imports, options?: WebAssemblyCompileOptions): Promise<WebAssemblyInstantiatedSource>;
4300843008 /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/validate_static) */
43009- function validate(bytes: BufferSource , options?: WebAssemblyCompileOptions): boolean;
43009+ function validate(bytes: AllowSharedBufferSource , options?: WebAssemblyCompileOptions): boolean;
4301043010}
4301143011
4301243012/** The **`console`** object provides access to the debugging console (e.g., the Web console in Firefox). */
@@ -44514,7 +44514,7 @@ type ColorGamut = "p3" | "rec2020" | "srgb";
4451444514type ColorSpaceConversion = "default" | "none";
4451544515type CompositeOperation = "accumulate" | "add" | "replace";
4451644516type CompositeOperationOrAuto = "accumulate" | "add" | "auto" | "replace";
44517- type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
44517+ type CompressionFormat = "brotli" | " deflate" | "deflate-raw" | "gzip";
4451844518type CookieSameSite = "lax" | "none" | "strict";
4451944519type CredentialMediationRequirement = "conditional" | "optional" | "required" | "silent";
4452044520type DOMParserSupportedType = "application/xhtml+xml" | "application/xml" | "image/svg+xml" | "text/html" | "text/xml";
@@ -44665,7 +44665,7 @@ type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origi
4466544665type RemotePlaybackState = "connected" | "connecting" | "disconnected";
4466644666type RequestCache = "default" | "force-cache" | "no-cache" | "no-store" | "only-if-cached" | "reload";
4466744667type RequestCredentials = "include" | "omit" | "same-origin";
44668- type RequestDestination = "" | "audio" | "audioworklet" | "document" | "embed" | "font" | "frame" | "iframe" | "image" | "manifest" | "object" | "paintworklet" | "report" | "script" | "sharedworker" | "style" | "track" | "video" | "worker" | "xslt";
44668+ type RequestDestination = "" | "audio" | "audioworklet" | "document" | "embed" | "font" | "frame" | "iframe" | "image" | "json" | " manifest" | "object" | "paintworklet" | "report" | "script" | "sharedworker" | "style" | "track" | "video" | "worker" | "xslt";
4466944669type RequestMode = "cors" | "navigate" | "no-cors" | "same-origin";
4467044670type RequestPriority = "auto" | "high" | "low";
4467144671type RequestRedirect = "error" | "follow" | "manual";
0 commit comments