@@ -407,6 +407,7 @@ ArrayBuffer.isView = function(arg) {};
407
407
408
408
/**
409
409
* @constructor
410
+ * @template TArrayBuffer (unused)
410
411
*/
411
412
function ArrayBufferView ( ) { }
412
413
@@ -456,6 +457,7 @@ var AllowSharedBufferSource;
456
457
* @implements {IArrayLike<number>}
457
458
* @implements {Iterable<number>}
458
459
* @extends {ArrayBufferView }
460
+ * @template TArrayBuffer (unused)
459
461
*/
460
462
function TypedArray ( ) { } ;
461
463
@@ -734,6 +736,7 @@ TypedArray.prototype[Symbol.iterator] = function() {};
734
736
* for readability and detection of programmer errors.
735
737
* @param {number= } opt_byteOffset
736
738
* @param {number= } opt_length
739
+ * @template TArrayBuffer (unused)
737
740
* @constructor
738
741
* @extends {TypedArray }
739
742
* @throws {Error }
@@ -780,6 +783,7 @@ Int8Array.of = function(var_args) {};
780
783
* for readability and detection of programmer errors.
781
784
* @param {number= } opt_byteOffset
782
785
* @param {number= } opt_length
786
+ * @template TArrayBuffer (unused)
783
787
* @constructor
784
788
* @extends {TypedArray }
785
789
* @throws {Error }
@@ -816,6 +820,7 @@ Uint8Array.of = function(var_args) {};
816
820
* for readability and detection of programmer errors.
817
821
* @param {number= } opt_byteOffset
818
822
* @param {number= } opt_length
823
+ * @template TArrayBuffer (unused)
819
824
* @constructor
820
825
* @extends {TypedArray }
821
826
* @throws {Error }
@@ -861,6 +866,7 @@ var CanvasPixelArray;
861
866
* for readability and detection of programmer errors.
862
867
* @param {number= } opt_byteOffset
863
868
* @param {number= } opt_length
869
+ * @template TArrayBuffer (unused)
864
870
* @constructor
865
871
* @extends {TypedArray }
866
872
* @throws {Error }
@@ -897,6 +903,7 @@ Int16Array.of = function(var_args) {};
897
903
* for readability and detection of programmer errors.
898
904
* @param {number= } opt_byteOffset
899
905
* @param {number= } opt_length
906
+ * @template TArrayBuffer (unused)
900
907
* @constructor
901
908
* @extends {TypedArray }
902
909
* @throws {Error }
@@ -933,6 +940,7 @@ Uint16Array.of = function(var_args) {};
933
940
* for readability and detection of programmer errors.
934
941
* @param {number= } opt_byteOffset
935
942
* @param {number= } opt_length
943
+ * @template TArrayBuffer (unused)
936
944
* @constructor
937
945
* @extends {TypedArray }
938
946
* @throws {Error }
@@ -969,6 +977,7 @@ Int32Array.of = function(var_args) {};
969
977
* for readability and detection of programmer errors.
970
978
* @param {number= } opt_byteOffset
971
979
* @param {number= } opt_length
980
+ * @template TArrayBuffer (unused)
972
981
* @constructor
973
982
* @extends {TypedArray }
974
983
* @throws {Error }
@@ -1005,6 +1014,7 @@ Uint32Array.of = function(var_args) {};
1005
1014
* for readability and detection of programmer errors.
1006
1015
* @param {number= } opt_byteOffset
1007
1016
* @param {number= } opt_length
1017
+ * @template TArrayBuffer (unused)
1008
1018
* @constructor
1009
1019
* @extends {TypedArray }
1010
1020
* @throws {Error }
@@ -1041,6 +1051,7 @@ Float32Array.of = function(var_args) {};
1041
1051
* for readability and detection of programmer errors.
1042
1052
* @param {number= } opt_byteOffset
1043
1053
* @param {number= } opt_length
1054
+ * @template TArrayBuffer (unused)
1044
1055
* @constructor
1045
1056
* @extends {TypedArray }
1046
1057
* @throws {Error }
@@ -1077,6 +1088,7 @@ Float64Array.of = function(var_args) {};
1077
1088
* for readability and detection of programmer errors.
1078
1089
* @param {number= } byteOffset
1079
1090
* @param {number= } bufferLength
1091
+ * @template TArrayBuffer (unused)
1080
1092
* @constructor
1081
1093
* @extends {TypedArray }
1082
1094
* @throws {Error }
@@ -1113,6 +1125,7 @@ BigInt64Array.of = function(var_args) {};
1113
1125
* for readability and detection of programmer errors.
1114
1126
* @param {number= } byteOffset
1115
1127
* @param {number= } bufferLength
1128
+ * @template TArrayBuffer (unused)
1116
1129
* @constructor
1117
1130
* @extends {TypedArray }
1118
1131
* @throws {Error }
0 commit comments