@@ -1887,7 +1887,7 @@ interface Int8Array {
18871887 * @param begin The index of the beginning of the array.
18881888 * @param end The index of the end of the array.
18891889 */
1890- subarray ( begin : number , end ?: number ) : Int8Array ;
1890+ subarray ( begin ? : number , end ?: number ) : Int8Array ;
18911891
18921892 /**
18931893 * Converts a number to a string by using the current locale.
@@ -2162,7 +2162,7 @@ interface Uint8Array {
21622162 * @param begin The index of the beginning of the array.
21632163 * @param end The index of the end of the array.
21642164 */
2165- subarray ( begin : number , end ?: number ) : Uint8Array ;
2165+ subarray ( begin ? : number , end ?: number ) : Uint8Array ;
21662166
21672167 /**
21682168 * Converts a number to a string by using the current locale.
@@ -2437,7 +2437,7 @@ interface Uint8ClampedArray {
24372437 * @param begin The index of the beginning of the array.
24382438 * @param end The index of the end of the array.
24392439 */
2440- subarray ( begin : number , end ?: number ) : Uint8ClampedArray ;
2440+ subarray ( begin ? : number , end ?: number ) : Uint8ClampedArray ;
24412441
24422442 /**
24432443 * Converts a number to a string by using the current locale.
@@ -2710,7 +2710,7 @@ interface Int16Array {
27102710 * @param begin The index of the beginning of the array.
27112711 * @param end The index of the end of the array.
27122712 */
2713- subarray ( begin : number , end ?: number ) : Int16Array ;
2713+ subarray ( begin ? : number , end ?: number ) : Int16Array ;
27142714
27152715 /**
27162716 * Converts a number to a string by using the current locale.
@@ -2986,7 +2986,7 @@ interface Uint16Array {
29862986 * @param begin The index of the beginning of the array.
29872987 * @param end The index of the end of the array.
29882988 */
2989- subarray ( begin : number , end ?: number ) : Uint16Array ;
2989+ subarray ( begin ? : number , end ?: number ) : Uint16Array ;
29902990
29912991 /**
29922992 * Converts a number to a string by using the current locale.
@@ -3261,7 +3261,7 @@ interface Int32Array {
32613261 * @param begin The index of the beginning of the array.
32623262 * @param end The index of the end of the array.
32633263 */
3264- subarray ( begin : number , end ?: number ) : Int32Array ;
3264+ subarray ( begin ? : number , end ?: number ) : Int32Array ;
32653265
32663266 /**
32673267 * Converts a number to a string by using the current locale.
@@ -3535,7 +3535,7 @@ interface Uint32Array {
35353535 * @param begin The index of the beginning of the array.
35363536 * @param end The index of the end of the array.
35373537 */
3538- subarray ( begin : number , end ?: number ) : Uint32Array ;
3538+ subarray ( begin ? : number , end ?: number ) : Uint32Array ;
35393539
35403540 /**
35413541 * Converts a number to a string by using the current locale.
@@ -3810,7 +3810,7 @@ interface Float32Array {
38103810 * @param begin The index of the beginning of the array.
38113811 * @param end The index of the end of the array.
38123812 */
3813- subarray ( begin : number , end ?: number ) : Float32Array ;
3813+ subarray ( begin ? : number , end ?: number ) : Float32Array ;
38143814
38153815 /**
38163816 * Converts a number to a string by using the current locale.
@@ -4086,7 +4086,7 @@ interface Float64Array {
40864086 * @param begin The index of the beginning of the array.
40874087 * @param end The index of the end of the array.
40884088 */
4089- subarray ( begin : number , end ?: number ) : Float64Array ;
4089+ subarray ( begin ? : number , end ?: number ) : Float64Array ;
40904090
40914091 /**
40924092 * Converts a number to a string by using the current locale.
0 commit comments