loudo-ds-map-interfaces 0.0.16 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -29,5 +29,5 @@ export declare abstract class MapRemove<K extends {}, V extends {}> {
|
|
29
29
|
export interface MapRemove<K extends {}, V extends {}> extends BaseMap<K, V>, Loud<Entry<K, V>> {
|
30
30
|
}
|
31
31
|
export type Object<K extends {}, V extends {}> = K extends string ? Record<string, V> : never;
|
32
|
-
export type MapInput<K extends {}, V extends {}> =
|
32
|
+
export type MapInput<K extends {}, V extends {}> = Iterable<Entry<K, V>> | Iterable<[K, V]> | Object<K, V>;
|
33
33
|
export declare function forEach<K extends {}, V extends {}>(input: MapInput<K, V>, f: (k: K, v: V) => void): void;
|