We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8e1a88 commit 494a4f9Copy full SHA for 494a4f9
1 file changed
lib/node_modules/@stdlib/blas/ext/base/ndarray/dsumkbn2/docs/types/test.ts
@@ -16,6 +16,8 @@
16
* limitations under the License.
17
*/
18
19
+/* eslint-disable space-in-parens */
20
+
21
import zeros = require( '@stdlib/ndarray/zeros' );
22
import dsumkbn2 = require( './index' );
23
@@ -26,7 +28,7 @@ import dsumkbn2 = require( './index' );
26
28
{
27
29
const x = zeros( [ 10 ], {
30
'dtype': 'float64'
- } );
31
+ });
32
33
dsumkbn2( [ x ] ); // $ExpectType number
34
}
@@ -48,7 +50,7 @@ import dsumkbn2 = require( './index' );
48
50
49
51
52
53
54
55
dsumkbn2(); // $ExpectError
56
dsumkbn2( [ x ], {} ); // $ExpectError
0 commit comments