diff --git a/lib/mapping/index.d.ts b/lib/mapping/index.d.ts index 694e789c..86e7b238 100644 --- a/lib/mapping/index.d.ts +++ b/lib/mapping/index.d.ts @@ -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 = {