@@ -2453,6 +2453,16 @@ interface ValidityStateFlags {
2453
2453
valueMissing?: boolean;
2454
2454
}
2455
2455
2456
+ interface ValueTypeMap {
2457
+ anyfunc: Function;
2458
+ externref: any;
2459
+ f32: number;
2460
+ f64: number;
2461
+ i32: number;
2462
+ i64: bigint;
2463
+ v128: never;
2464
+ }
2465
+
2456
2466
interface VideoColorSpaceInit {
2457
2467
fullRange?: boolean | null;
2458
2468
matrix?: VideoMatrixCoefficients | null;
@@ -6351,7 +6361,6 @@ interface CSSStyleProperties extends CSSStyleDeclaration {
6351
6361
counterReset: string;
6352
6362
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-set) */
6353
6363
counterSet: string;
6354
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat) */
6355
6364
cssFloat: string;
6356
6365
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cursor) */
6357
6366
cursor: string;
@@ -38586,16 +38595,6 @@ declare namespace WebAssembly {
38586
38595
maximum?: AddressValue;
38587
38596
}
38588
38597
38589
- interface ValueTypeMap {
38590
- anyfunc: Function;
38591
- externref: any;
38592
- f32: number;
38593
- f64: number;
38594
- i32: number;
38595
- i64: bigint;
38596
- v128: never;
38597
- }
38598
-
38599
38598
interface WebAssemblyInstantiatedSource {
38600
38599
instance: Instance;
38601
38600
module: Module;
@@ -38608,7 +38607,6 @@ declare namespace WebAssembly {
38608
38607
type ImportValue = ExportValue | number;
38609
38608
type Imports = Record<string, ModuleImports>;
38610
38609
type ModuleImports = Record<string, ImportValue>;
38611
- type ValueType = keyof ValueTypeMap;
38612
38610
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compile_static) */
38613
38611
function compile(bytes: BufferSource, options?: WebAssemblyCompileOptions): Promise<Module>;
38614
38612
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compileStreaming_static) */
@@ -40035,6 +40033,7 @@ type TimerHandler = string | Function;
40035
40033
type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | MediaSourceHandle | ReadableStream | WritableStream | TransformStream | AudioData | VideoFrame | RTCDataChannel | ArrayBuffer;
40036
40034
type URLPatternInput = string | URLPatternInit;
40037
40035
type Uint32List = Uint32Array<ArrayBufferLike> | GLuint[];
40036
+ type ValueType = keyof ValueTypeMap;
40038
40037
type VibratePattern = number | number[];
40039
40038
type WindowProxy = Window;
40040
40039
type XMLHttpRequestBodyInit = Blob | BufferSource | FormData | URLSearchParams | string;
0 commit comments