Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 12, 2023
1 parent 105e3dc commit c8b9548
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions array/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ interface ExtendedOptions extends Options {
* var v = arr.get( 0 );
* // returns [ 1, 2 ]
*/
declare function array<T = unknown>( options: OptionsWithShape | OptionsWithBuffer ): typedndarray<T>; // tslint:disable-line:no-unnecessary-generics
declare function array<T = unknown>( options: OptionsWithShape | OptionsWithBuffer ): typedndarray<T>;

/**
* Returns a multidimensional array.
Expand Down Expand Up @@ -220,7 +220,7 @@ declare function array<T = unknown>( options: OptionsWithShape | OptionsWithBuff
* var v = arr.get( 0, 0 );
* // returns 1.0
*/
declare function array<T = unknown>( buffer: ArrayLike<any>, options?: ExtendedOptions ): typedndarray<T>; // tslint:disable-line:no-unnecessary-generics
declare function array<T = unknown>( buffer: ArrayLike<any>, options?: ExtendedOptions ): typedndarray<T>;


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion base/function-object/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ import headerDir = require( './index' );

// The variable is a string...
{
// tslint:disable-next-line:no-unused-expression
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
headerDir; // $ExpectType string
}
2 changes: 1 addition & 1 deletion base/napi/addon-arguments/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ import headerDir = require( './index' );

// The variable is a string...
{
// tslint:disable-next-line:no-unused-expression
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
headerDir; // $ExpectType string
}
2 changes: 1 addition & 1 deletion base/napi/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ import headerDir = require( './index' );

// The variable is a string...
{
// tslint:disable-next-line:no-unused-expression
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
headerDir; // $ExpectType string
}
2 changes: 1 addition & 1 deletion base/napi/dtype-string-to-dtype/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ import headerDir = require( './index' );

// The variable is a string...
{
// tslint:disable-next-line:no-unused-expression
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
headerDir; // $ExpectType string
}
2 changes: 1 addition & 1 deletion base/napi/typedarray-type-to-dtype/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ import headerDir = require( './index' );

// The variable is a string...
{
// tslint:disable-next-line:no-unused-expression
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
headerDir; // $ExpectType string
}
2 changes: 1 addition & 1 deletion base/napi/unary/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ import headerDir = require( './index' );

// The variable is a string...
{
// tslint:disable-next-line:no-unused-expression
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
headerDir; // $ExpectType string
}
2 changes: 1 addition & 1 deletion iter/to-array-each/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type Iterator<T> = TypedIterator<T> | TypedIterableIterator<T>;
*
* // ...
*/
declare function nditer2arrayEach<T = unknown>( iterator: Iterator<ndarray> ): Iterator<Array<T>>; // tslint:disable-line:no-unnecessary-generics
declare function nditer2arrayEach<T = unknown>( iterator: Iterator<ndarray> ): Iterator<Array<T>>;


// EXPORTS //
Expand Down

0 comments on commit c8b9548

Please sign in to comment.