Home > dict-utils > dictForEach
Signature:
export declare function dictForEach<T, S>(from: Dict<T>, callback: (val: T, key: string | number, from: Dict<T>) => void): void;
| Parameter | Type | Description |
|---|---|---|
| from | Dict<T> |
|
| callback | (val: T, key: string | number, from: Dict<T>) => void |
Returns:
void