From 6f397036d8abbc5a75d07e05df35599712f01058 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Fri, 3 Nov 2023 07:49:51 +0000 Subject: [PATCH] Auto-generated commit --- .github/.keepalive | 1 - docs/types/index.d.ts | 14 +++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) delete mode 100644 .github/.keepalive diff --git a/.github/.keepalive b/.github/.keepalive deleted file mode 100644 index bfec25c..0000000 --- a/.github/.keepalive +++ /dev/null @@ -1 +0,0 @@ -2023-11-01T05:37:11.423Z diff --git a/docs/types/index.d.ts b/docs/types/index.d.ts index cd863c6..06a13f2 100644 --- a/docs/types/index.d.ts +++ b/docs/types/index.d.ts @@ -39,7 +39,7 @@ import ArrayBuffer = require( '@stdlib/array-buffer' ); * var arr = typedarray( 'float32'); * // returns */ -declare function typedarray( dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length +declare function typedarray( dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; /** * Creates a typed array. @@ -56,7 +56,7 @@ declare function typedarray( dtype?: RealOrComplexDataType ): RealOrComplexTyped * var arr = typedarray( 2, 'float32' ); * // returns [ 0.0, 0.0 ] */ -declare function typedarray( length: number, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length +declare function typedarray( length: number, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; /** * Creates a typed array. @@ -83,7 +83,7 @@ declare function typedarray( length: number, dtype?: RealOrComplexDataType ): Re * var arr2 = typedarray( arr1, 'uint32' ); * // returns [ 5, 3 ] */ -declare function typedarray( typedarray: RealOrComplexTypedArray, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length +declare function typedarray( typedarray: RealOrComplexTypedArray, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; /** * Creates a typed array. @@ -100,7 +100,7 @@ declare function typedarray( typedarray: RealOrComplexTypedArray, dtype?: RealOr * var arr = typedarray( [ 5, -3 ], 'int32' ); * // returns [ 5, -3 ] */ -declare function typedarray( obj: ArrayLike | Iterable, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length +declare function typedarray( obj: ArrayLike | Iterable, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; /** * Creates a typed array. @@ -123,7 +123,7 @@ declare function typedarray( obj: ArrayLike | Iterable, dtype?: Rea * var arr = typedarray( buf, 'float32' ); * // returns [ 0.0, 0.0, 0.0, 0.0 ] */ -declare function typedarray( buffer: ArrayBuffer, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length +declare function typedarray( buffer: ArrayBuffer, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; /** * Creates a typed array. @@ -147,7 +147,7 @@ declare function typedarray( buffer: ArrayBuffer, dtype?: RealOrComplexDataType * var arr = typedarray( buf, 8, 'float32' ); * // returns [ 0.0, 0.0 ] */ -declare function typedarray( buffer: ArrayBuffer, byteOffset?: number, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length +declare function typedarray( buffer: ArrayBuffer, byteOffset?: number, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; /** * Creates a typed array. @@ -172,7 +172,7 @@ declare function typedarray( buffer: ArrayBuffer, byteOffset?: number, dtype?: R * var arr = typedarray( buf, 8, 2, 'int32' ); * // returns [ 0, 0 ] */ -declare function typedarray( buffer: ArrayBuffer, byteOffset?: number, length?: number, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; // tslint:disable-line:max-line-length +declare function typedarray( buffer: ArrayBuffer, byteOffset?: number, length?: number, dtype?: RealOrComplexDataType ): RealOrComplexTypedArray; // EXPORTS //