File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff 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 //
You can’t perform that action at this time.
0 commit comments