Skip to content

Commit

Permalink
Fix for loop on Result<T> instance
Browse files Browse the repository at this point in the history
  • Loading branch information
ramikg authored May 30, 2024
1 parent f767bcc commit ff7ffd8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/mapping/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ export namespace mapping {
forEach(callback: (currentValue: T, index: number) => void, thisArg?: any): void;

toArray(): T[];

[Symbol.iterator](): Iterator<T>;
}

type MappingExecutionOptions = {
Expand Down

0 comments on commit ff7ffd8

Please sign in to comment.