PokéRogue
    Preparing search index...

    Type Alias WritableMapDeep<MapType>

    WritableMapDeep: MapType extends ReadonlyMap<infer KeyType, infer ValueType>
        ? Map<WritableDeep<KeyType>, WritableDeep<ValueType>>
        : MapType

    Same as WritableDeep, but accepts only Maps as inputs. Internal helper for WritableDeep.

    Type Parameters

    • MapType extends ReadonlyMap<unknown, unknown>