Skip to content

Commit

Permalink
Version 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MadProbe committed Apr 18, 2024
1 parent 53e9765 commit 8593105
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions declarations/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ export declare type _IteratorSkeleton<T> = { next(value?: unknown): IteratorResu

export declare type _AsyncIteratorSkeleton<T> = { next(value?: unknown): PromiseLike<IteratorResult<T>> };

export declare type _IterableSkeleton<T> = { [Symbol.iterator]: _IteratorSkeleton<T> };
export declare type _IterableSkeleton<T> = { [Symbol.iterator](): _IteratorSkeleton<T> };

export declare type _AsyncIterableSkeleton<T> = { [Symbol.asyncIterator]: _AsyncIteratorSkeleton<T> };
export declare type _AsyncIterableSkeleton<T> = { [Symbol.asyncIterator](): _AsyncIteratorSkeleton<T> };

export declare type _IteratorLike<T = any> = _IteratorSkeleton<T> | _IterableSkeleton<T>;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "MadProbe#7435",
"name": "iterator-helpers-polyfill",
"description": "A polyfill for Iterator helpers proposal",
"version": "3.0.0",
"version": "3.0.1",
"license": "MIT",
"type": "module",
"main": "./build/bundle.min.js",
Expand Down

0 comments on commit 8593105

Please sign in to comment.