Skip to content

Commit 587f3db

Browse files
committed
Auto-generated commit
1 parent 5eb1aa0 commit 587f3db

File tree

26 files changed

+52
-55
lines changed

26 files changed

+52
-55
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,7 @@ A total of 7 people contributed to this release. Thank you to the following cont
649649

650650
<details>
651651

652+
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
652653
- [`7f368f6`](https://github.com/stdlib-js/stdlib/commit/7f368f6c3f4cea444a304a62616cea36a5f143eb) - **fix:** remove unused imports from TS declaration file _(by Philipp Burckhardt)_
653654
- [`975147f`](https://github.com/stdlib-js/stdlib/commit/975147f3125c786ec1672acb3d2564ca16eaa790) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_
654655
- [`fbe6651`](https://github.com/stdlib-js/stdlib/commit/fbe6651766e6c9bf9dd941c08fbefb2cab03de1c) - **feat:** add `Float32ArrayLE` to namespace _(by Athan Reines)_

base/accessor-getter/docs/types/test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,10 @@ import getter = require( './index' );
2626
/**
2727
* Returns an array-like object supporting the get/set protocol.
2828
*
29-
* @return array-like object
29+
* @returns array-like object
3030
*/
3131
function accessorArray(): AccessorArrayLike<number> {
32-
let arr: AccessorArrayLike<number>;
33-
arr = {
32+
const arr: AccessorArrayLike<number> = {
3433
'0': 1,
3534
'1': 2,
3635
'2': 3,

base/accessors/docs/types/test.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,10 @@ import accessors = require( './index' );
2626
/**
2727
* Returns an array-like object supporting the get/set protocol.
2828
*
29-
* @return array-like object
29+
* @returns array-like object
3030
*/
3131
function accessorArray(): AccessorArrayLike<number> {
32-
let arr: AccessorArrayLike<number>;
33-
arr = {
32+
const arr: AccessorArrayLike<number> = {
3433
'0': 1,
3534
'1': 2,
3635
'2': 3,
@@ -49,11 +48,10 @@ function accessorArray(): AccessorArrayLike<number> {
4948
/**
5049
* Returns an array-like object.
5150
*
52-
* @return array-like object
51+
* @returns array-like object
5352
*/
5453
function arrayLike(): ArrayLike<number> {
55-
let arr: ArrayLike<number>;
56-
arr = {
54+
const arr: ArrayLike<number> = {
5755
'0': 1,
5856
'1': 2,
5957
'2': 3,

base/arraylike2object/docs/types/test.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,10 @@ import arraylike2object = require( './index' );
2626
/**
2727
* Returns an array-like object supporting the get/set protocol.
2828
*
29-
* @return array-like object
29+
* @returns array-like object
3030
*/
3131
function accessorArray(): AccessorArrayLike<number> {
32-
let arr: AccessorArrayLike<number>;
33-
arr = {
32+
const arr: AccessorArrayLike<number> = {
3433
'0': 1,
3534
'1': 2,
3635
'2': 3,
@@ -49,11 +48,10 @@ function accessorArray(): AccessorArrayLike<number> {
4948
/**
5049
* Returns an array-like object.
5150
*
52-
* @return array-like object
51+
* @returns array-like object
5352
*/
5453
function arrayLike(): ArrayLike<number> {
55-
let arr: ArrayLike<number>;
56-
arr = {
54+
const arr: ArrayLike<number> = {
5755
'0': 1,
5856
'1': 2,
5957
'2': 3,

base/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ interface Namespace {
284284
* '2': 3,
285285
* '4': 4,
286286
* 'length': 4
287-
};
287+
* };
288288
* var obj = ns.accessors( x );
289289
* // returns {...}
290290
*
@@ -385,7 +385,7 @@ interface Namespace {
385385
* '2': 3,
386386
* '4': 4,
387387
* 'length': 4
388-
};
388+
* };
389389
* var obj = ns.arraylike2object( x );
390390
* // returns {...}
391391
*

base/filled2d-by/docs/types/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape2D } from '@stdlib/types/ndarray';
2524

2625
/**

base/filled3d-by/docs/types/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape3D } from '@stdlib/types/ndarray';
2524

2625
/**

base/filled4d-by/docs/types/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape4D } from '@stdlib/types/ndarray';
2524

2625
/**

base/filled4d/docs/types/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape4D } from '@stdlib/types/ndarray';
2524

2625
/**

base/filled5d-by/docs/types/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape5D } from '@stdlib/types/ndarray';
2524

2625
/**

0 commit comments

Comments
 (0)