File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1123,7 +1123,7 @@ export namespace v128 {
1123
1123
1124
1124
// @ts -ignore: decorator
1125
1125
@builtin
1126
- export declare function narrow < T > ( a : v128 ) : v128 ;
1126
+ export declare function narrow < T > ( a : v128 , b : v128 ) : v128 ;
1127
1127
1128
1128
// @ts -ignore: decorator
1129
1129
@builtin
Original file line number Diff line number Diff line change @@ -606,7 +606,7 @@ declare namespace v128 {
606
606
/** Truncates each lane of a 128-bit vector from floating point to integer with saturation. Takes the target type. */
607
607
export function trunc_sat < TTo = i32 | u32 | i64 | u64 > ( a : v128 ) : v128 ;
608
608
/** Narrows each lane of two 128-bit vectors to their respective narrower lanes. */
609
- export function narrow < TFrom = i16 | i32 > ( a : v128 ) : v128 ;
609
+ export function narrow < TFrom = i16 | i32 > ( a : v128 , b : v128 ) : v128 ;
610
610
/** Widens the low lanes of a 128-bit vector to their respective wider lanes. */
611
611
export function widen_low < TFrom = i8 | i16 > ( a : v128 ) : v128 ;
612
612
/** Widens the high lanes of a 128-bit vector to their respective wider lanes. */
You can’t perform that action at this time.
0 commit comments