@@ -78,7 +78,7 @@ declare function nextDataType( dtype: 'float32' ): 'float64';
78
78
* var dt = nextDataType( 'int32' );
79
79
* // returns -1
80
80
*/
81
- declare function nextDataType ( dtype : 'int32' ) : number ; // tslint: disable-line: unified-signatures
81
+ declare function nextDataType ( dtype : 'int32' ) : number ; // eslint- disable-line @typescript-eslint/ unified-signatures
82
82
83
83
/**
84
84
* Returns the next larger array data type of the same kind.
@@ -126,7 +126,7 @@ declare function nextDataType( dtype: 'int8' ): 'int16';
126
126
* var dt = nextDataType( 'uint32' );
127
127
* // returns -1
128
128
*/
129
- declare function nextDataType ( dtype : 'uint32' ) : number ; // tslint: disable-line: unified-signatures
129
+ declare function nextDataType ( dtype : 'uint32' ) : number ; // eslint- disable-line @typescript-eslint/ unified-signatures
130
130
131
131
/**
132
132
* Returns the next larger array data type of the same kind.
@@ -174,7 +174,7 @@ declare function nextDataType( dtype: 'uint8' ): 'uint16';
174
174
* var dt = nextDataType( 'uint8c' );
175
175
* // returns 'uint16'
176
176
*/
177
- declare function nextDataType ( dtype : 'uint8c' ) : 'uint16' ; // tslint: disable-line: unified-signatures
177
+ declare function nextDataType ( dtype : 'uint8c' ) : 'uint16' ; // eslint- disable-line @typescript-eslint/ unified-signatures
178
178
179
179
/**
180
180
* Returns the next larger array data type of the same kind.
@@ -190,7 +190,7 @@ declare function nextDataType( dtype: 'uint8c' ): 'uint16'; // tslint:disable-li
190
190
* var dt = nextDataType( 'generic' );
191
191
* // returns -1
192
192
*/
193
- declare function nextDataType ( dtype : 'generic' ) : number ; // tslint: disable-line: unified-signatures
193
+ declare function nextDataType ( dtype : 'generic' ) : number ; // eslint- disable-line @typescript-eslint/ unified-signatures
194
194
195
195
/**
196
196
* Returns the next larger array data type of the same kind.
@@ -206,7 +206,7 @@ declare function nextDataType( dtype: 'generic' ): number; // tslint:disable-lin
206
206
* var dt = nextDataType( 'complex128' );
207
207
* // returns -1
208
208
*/
209
- declare function nextDataType ( dtype : 'complex128' ) : number ; // tslint: disable-line: unified-signatures
209
+ declare function nextDataType ( dtype : 'complex128' ) : number ; // eslint- disable-line @typescript-eslint/ unified-signatures
210
210
211
211
/**
212
212
* Returns the next larger array data type of the same kind.
0 commit comments