export default forEach; /** * Functional version of `Array.forEach`. More flexible and applicable to other array-like data types. * * @template T * @param {(item: T) => void} f - Modifier function applied on every item of the array. * @return {(arr: ArrayLike) => void} Modified array-like variable. */ declare function forEach(f: (item: T_1) => void): (arr: ArrayLike) => void;