@@ -35,7 +35,7 @@ import { ComplexLike } from '@stdlib/types/complex';
3535* var arr = full( 2, 1.0, 'float64' );
3636* // returns <Float64Array>[ 1.0, 1.0 ]
3737*/
38- declare function full ( length : number , value : number , dtype : 'float64' ) : Float64Array ; // tslint:disable-line:max-line-length
38+ declare function full ( length : number , value : number , dtype : 'float64' ) : Float64Array ;
3939
4040/**
4141* Creates a filled array having a specified length.
@@ -49,7 +49,7 @@ declare function full( length: number, value: number, dtype: 'float64' ): Float6
4949* var arr = full( 2, 1.0, 'float32' );
5050* // returns <Float32Array>[ 1.0, 1.0 ]
5151*/
52- declare function full ( length : number , value : number , dtype : 'float32' ) : Float32Array ; // tslint:disable-line:max-line-length
52+ declare function full ( length : number , value : number , dtype : 'float32' ) : Float32Array ;
5353
5454/**
5555* Creates a filled array having a specified length.
@@ -65,7 +65,7 @@ declare function full( length: number, value: number, dtype: 'float32' ): Float3
6565* var arr = full( 2, new Complex128( 1.0, 2.0 ), 'complex128' );
6666* // returns <Complex128Array>
6767*/
68- declare function full ( length : number , value : ComplexLike , dtype : 'complex128' ) : Complex128Array ; // tslint:disable-line:max-line-length
68+ declare function full ( length : number , value : ComplexLike , dtype : 'complex128' ) : Complex128Array ;
6969
7070/**
7171* Creates a filled array having a specified length.
@@ -81,7 +81,7 @@ declare function full( length: number, value: ComplexLike, dtype: 'complex128' )
8181* var arr = full( 2, new Complex64( 1.0, 2.0 ), 'complex64' );
8282* // returns <Complex64Array>
8383*/
84- declare function full ( length : number , value : ComplexLike , dtype : 'complex64' ) : Complex64Array ; // tslint:disable-line:max-line-length
84+ declare function full ( length : number , value : ComplexLike , dtype : 'complex64' ) : Complex64Array ;
8585
8686/**
8787* Creates a filled array having a specified length.
@@ -95,7 +95,7 @@ declare function full( length: number, value: ComplexLike, dtype: 'complex64' ):
9595* var arr = full( 2, 1, 'int32' );
9696* // returns <Int32Array>[ 1, 1 ]
9797*/
98- declare function full ( length : number , value : number , dtype : 'int32' ) : Int32Array ; // tslint:disable-line:max-line-length
98+ declare function full ( length : number , value : number , dtype : 'int32' ) : Int32Array ;
9999
100100/**
101101* Creates a filled array having a specified length.
@@ -109,7 +109,7 @@ declare function full( length: number, value: number, dtype: 'int32' ): Int32Arr
109109* var arr = full( 2, 1, 'int16' );
110110* // returns <Int16Array>[ 1, 1 ]
111111*/
112- declare function full ( length : number , value : number , dtype : 'int16' ) : Int16Array ; // tslint:disable-line:max-line-length
112+ declare function full ( length : number , value : number , dtype : 'int16' ) : Int16Array ;
113113
114114/**
115115* Creates a filled array having a specified length.
@@ -123,7 +123,7 @@ declare function full( length: number, value: number, dtype: 'int16' ): Int16Arr
123123* var arr = full( 2, 1, 'int8' );
124124* // returns <Int8Array>[ 1, 1 ]
125125*/
126- declare function full ( length : number , value : number , dtype : 'int8' ) : Int8Array ; // tslint:disable-line:max-line-length
126+ declare function full ( length : number , value : number , dtype : 'int8' ) : Int8Array ;
127127
128128/**
129129* Creates a filled array having a specified length.
@@ -137,7 +137,7 @@ declare function full( length: number, value: number, dtype: 'int8' ): Int8Array
137137* var arr = full( 2, 1, 'uint32' );
138138* // returns <Uint32Array>[ 1, 1 ]
139139*/
140- declare function full ( length : number , value : number , dtype : 'uint32' ) : Uint32Array ; // tslint:disable-line:max-line-length
140+ declare function full ( length : number , value : number , dtype : 'uint32' ) : Uint32Array ;
141141
142142/**
143143* Creates a filled array having a specified length.
@@ -151,7 +151,7 @@ declare function full( length: number, value: number, dtype: 'uint32' ): Uint32A
151151* var arr = full( 2, 1, 'uint16' );
152152* // returns <Uint16Array>[ 1, 1 ]
153153*/
154- declare function full ( length : number , value : number , dtype : 'uint16' ) : Uint16Array ; // tslint:disable-line:max-line-length
154+ declare function full ( length : number , value : number , dtype : 'uint16' ) : Uint16Array ;
155155
156156/**
157157* Creates a filled array having a specified length.
@@ -165,7 +165,7 @@ declare function full( length: number, value: number, dtype: 'uint16' ): Uint16A
165165* var arr = full( 2, 1, 'uint8' );
166166* // returns <Uint8Array>[ 1, 1 ]
167167*/
168- declare function full ( length : number , value : number , dtype : 'uint8' ) : Uint8Array ; // tslint:disable-line:max-line-length
168+ declare function full ( length : number , value : number , dtype : 'uint8' ) : Uint8Array ;
169169
170170/**
171171* Creates a filled array having a specified length.
@@ -179,7 +179,7 @@ declare function full( length: number, value: number, dtype: 'uint8' ): Uint8Arr
179179* var arr = full( 2, 1, 'uint8c' );
180180* // returns <Uint8ClampedArray>[ 1, 1 ]
181181*/
182- declare function full ( length : number , value : number , dtype : 'uint8c' ) : Uint8ClampedArray ; // tslint:disable-line:max-line-length
182+ declare function full ( length : number , value : number , dtype : 'uint8c' ) : Uint8ClampedArray ;
183183
184184/**
185185* Creates a filled array having a specified length.
@@ -193,7 +193,7 @@ declare function full( length: number, value: number, dtype: 'uint8c' ): Uint8Cl
193193* var arr = full( 2, 1, 'generic' );
194194* // returns [ 1, 1 ]
195195*/
196- declare function full ( length : number , value : any , dtype : 'generic' ) : Array < any > ; // tslint:disable-line:max-line-length
196+ declare function full ( length : number , value : any , dtype : 'generic' ) : Array < any > ;
197197
198198/**
199199* Creates a filled array having a specified length.
0 commit comments