File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
lib/node_modules/@stdlib/blas/base/ndarray/gdot/docs/types Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 1616* limitations under the License.
1717*/
1818
19+ /* eslint-disable space-in-parens */
20+
1921import zeros = require( '@stdlib/ndarray/zeros' ) ;
2022import gdot = require( './index' ) ;
2123
@@ -26,10 +28,10 @@ import gdot = require( './index' );
2628{
2729 const x = zeros ( [ 10 ] , {
2830 'dtype' : 'generic'
29- } ) ;
31+ } ) ;
3032 const y = zeros ( [ 10 ] , {
3133 'dtype' : 'generic'
32- } ) ;
34+ } ) ;
3335
3436 gdot ( [ x , y ] ) ; // $ExpectType number
3537}
@@ -51,10 +53,10 @@ import gdot = require( './index' );
5153{
5254 const x = zeros ( [ 10 ] , {
5355 'dtype' : 'generic'
54- } ) ;
56+ } ) ;
5557 const y = zeros ( [ 10 ] , {
5658 'dtype' : 'generic'
57- } ) ;
59+ } ) ;
5860
5961 gdot ( ) ; // $ExpectError
6062 gdot ( [ x , y ] , { } ) ; // $ExpectError
You can’t perform that action at this time.
0 commit comments