From bd30c0b68826e9a2102ac4cbd079ac101dd016e5 Mon Sep 17 00:00:00 2001 From: aries0d0f Date: Fri, 27 Mar 2026 14:16:16 +0900 Subject: [PATCH] fix(type): Lost related `mapWithIndex` methods in MapProxy type interface. --- src/shared/libs/map.ts | 4 ++++ 1 file changed, 4 insertions(+) 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,