diff --git a/src/shared/libs/map.ts b/src/shared/libs/map.ts index f7694692..63740445 100644 --- a/src/shared/libs/map.ts +++ b/src/shared/libs/map.ts @@ -29,6 +29,10 @@ export interface MapProxy extends Map) => [U, S], thisArg?: any ): MapProxy; + mapWithIndex( + callbackfn: (value: V, key: K, index: number, map: Map) => [U, S], + thisArg?: any + ): MapProxy; reduce( callbackfn: (previousValue: U, currentValue: V, currentKey: K, map: Map) => U,