File tree Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ export const typeNameKeywords = [
29
29
"Uint8ClampedArray" ,
30
30
"BigInt64Array" ,
31
31
"BigUint64Array" ,
32
+ "Float16Array" ,
32
33
"Float32Array" ,
33
34
"Float64Array" ,
34
35
"any" ,
Original file line number Diff line number Diff line change 324
324
"extAttrs" : [],
325
325
"special" : " "
326
326
},
327
+ {
328
+ "type" : " operation" ,
329
+ "name" : " add" ,
330
+ "idlType" : {
331
+ "type" : " return-type" ,
332
+ "extAttrs" : [],
333
+ "generic" : " " ,
334
+ "nullable" : false ,
335
+ "union" : false ,
336
+ "idlType" : " undefined"
337
+ },
338
+ "arguments" : [
339
+ {
340
+ "type" : " argument" ,
341
+ "name" : " array" ,
342
+ "extAttrs" : [],
343
+ "idlType" : {
344
+ "type" : " argument-type" ,
345
+ "extAttrs" : [],
346
+ "generic" : " " ,
347
+ "nullable" : false ,
348
+ "union" : false ,
349
+ "idlType" : " Float16Array"
350
+ },
351
+ "default" : null ,
352
+ "optional" : false ,
353
+ "variadic" : false
354
+ }
355
+ ],
356
+ "extAttrs" : [],
357
+ "special" : " "
358
+ },
327
359
{
328
360
"type" : " operation" ,
329
361
"name" : " add" ,
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ interface Buffer {
10
10
undefined add (Uint8ClampedArray array);
11
11
undefined add (BigInt64Array array);
12
12
undefined add (BigUint64Array array);
13
+ undefined add (Float16Array array);
13
14
undefined add (Float32Array array);
14
15
undefined add (Float64Array array);
15
16
You can’t perform that action at this time.
0 commit comments