@@ -39,7 +39,7 @@ import ArrayBuffer = require( '@stdlib/array-buffer' );
3939* var arr = typedarray( 'float32');
4040* // returns <Float32Array>
4141*/
42- declare function typedarray ( dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length
42+ declare function typedarray ( dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ;
4343
4444/**
4545* Creates a typed array.
@@ -56,7 +56,7 @@ declare function typedarray( dtype?: RealOrComplexDataType ): RealOrComplexTyped
5656* var arr = typedarray( 2, 'float32' );
5757* // returns <Float32Array>[ 0.0, 0.0 ]
5858*/
59- declare function typedarray ( length : number , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length
59+ declare function typedarray ( length : number , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ;
6060
6161/**
6262* Creates a typed array.
@@ -83,7 +83,7 @@ declare function typedarray( length: number, dtype?: RealOrComplexDataType ): Re
8383* var arr2 = typedarray( arr1, 'uint32' );
8484* // returns <Uint32Array>[ 5, 3 ]
8585*/
86- declare function typedarray ( typedarray : RealOrComplexTypedArray , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length
86+ declare function typedarray ( typedarray : RealOrComplexTypedArray , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ;
8787
8888/**
8989* Creates a typed array.
@@ -100,7 +100,7 @@ declare function typedarray( typedarray: RealOrComplexTypedArray, dtype?: RealOr
100100* var arr = typedarray( [ 5, -3 ], 'int32' );
101101* // returns <Int32Array>[ 5, -3 ]
102102*/
103- declare function typedarray ( obj : ArrayLike < number > | Iterable < any > , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length
103+ declare function typedarray ( obj : ArrayLike < number > | Iterable < any > , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ;
104104
105105/**
106106* Creates a typed array.
@@ -123,7 +123,7 @@ declare function typedarray( obj: ArrayLike<number> | Iterable<any>, dtype?: Rea
123123* var arr = typedarray( buf, 'float32' );
124124* // returns <Float32Array>[ 0.0, 0.0, 0.0, 0.0 ]
125125*/
126- declare function typedarray ( buffer : ArrayBuffer , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length
126+ declare function typedarray ( buffer : ArrayBuffer , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ;
127127
128128/**
129129* Creates a typed array.
@@ -147,7 +147,7 @@ declare function typedarray( buffer: ArrayBuffer, dtype?: RealOrComplexDataType
147147* var arr = typedarray( buf, 8, 'float32' );
148148* // returns <Float32Array>[ 0.0, 0.0 ]
149149*/
150- declare function typedarray ( buffer : ArrayBuffer , byteOffset ?: number , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length
150+ declare function typedarray ( buffer : ArrayBuffer , byteOffset ?: number , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ;
151151
152152/**
153153* Creates a typed array.
@@ -172,7 +172,7 @@ declare function typedarray( buffer: ArrayBuffer, byteOffset?: number, dtype?: R
172172* var arr = typedarray( buf, 8, 2, 'int32' );
173173* // returns <Int32Array>[ 0, 0 ]
174174*/
175- declare function typedarray ( buffer : ArrayBuffer , byteOffset ?: number , length ?: number , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ; // tslint:disable-line:max-line-length
175+ declare function typedarray ( buffer : ArrayBuffer , byteOffset ?: number , length ?: number , dtype ?: RealOrComplexDataType ) : RealOrComplexTypedArray ;
176176
177177
178178// EXPORTS //
0 commit comments