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 Jun 28, 2023
1 parent 180f870 commit f79de8d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion any/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

// TypeScript Version: 2.0
// TypeScript Version: 4.1

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

Expand Down
2 changes: 1 addition & 1 deletion every/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

// TypeScript Version: 2.0
// TypeScript Version: 4.1

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

Expand Down
4 changes: 2 additions & 2 deletions index-of/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

// TypeScript Version: 2.0
// TypeScript Version: 4.1

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

Expand Down Expand Up @@ -78,7 +78,7 @@ import { Collection } from '@stdlib/types/object';
* var idx = indexOf( str, 'o' );
* // returns 3
*/
declare function indexOf( arr: Collection, searchElement: any, fromIndex?: number ): number; // tslint-disable-line max-line-length
declare function indexOf( arr: Collection, searchElement: any, fromIndex?: number ): number;


// EXPORTS //
Expand Down
4 changes: 2 additions & 2 deletions mask-arguments/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

// TypeScript Version: 2.0
// TypeScript Version: 4.1

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

Expand Down Expand Up @@ -44,7 +44,7 @@ import { Collection } from '@stdlib/types/object';
* var out = bar( 1, 2, 3 );
* // returns [ 1, 3 ]
*/
declare function maskArguments( fcn: Function, mask: Collection, thisArg?: any ): Function; // tslint-disable-line max-line-length
declare function maskArguments( fcn: Function, mask: Collection, thisArg?: any ): Function;


// EXPORTS //
Expand Down

0 comments on commit f79de8d

Please sign in to comment.