Skip to content

Commit 9132d85

Browse files
committed
Auto-generated commit
1 parent 1bc94e7 commit 9132d85

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { RealOrComplexTypedArray } from '@stdlib/types/array';
2525
/**
2626
* Typed array data type.
2727
*/
28-
type dtype = 'Float64Array' | 'Float32Array' | 'Int32Array' | 'Uint32Array' | 'Int16Array' | 'Uint16Array' | 'Int8Array' | 'Uint8Array' | 'Uint8ClampedArray' | 'Complex64Array' | 'Complex128Array'; // tslint:disable-line:max-line-length
28+
type dtype = 'Float64Array' | 'Float32Array' | 'Int32Array' | 'Uint32Array' | 'Int16Array' | 'Uint16Array' | 'Int8Array' | 'Uint8Array' | 'Uint8ClampedArray' | 'Complex64Array' | 'Complex128Array';
2929

3030
/**
3131
* JSON representation of typed array.
@@ -61,7 +61,7 @@ interface JSONRepresentation {
6161
* var json = typedarray2json( arr );
6262
* // returns { 'type': 'Float64Array', 'data': [ 5.0, 3.0 ] }
6363
*/
64-
declare function typedarray2json( arr: RealOrComplexTypedArray ): JSONRepresentation; // tslint:disable-line:max-line-length
64+
declare function typedarray2json( arr: RealOrComplexTypedArray ): JSONRepresentation;
6565

6666

6767
// EXPORTS //

0 commit comments

Comments
 (0)