/** * Performs synchronous-like Array.forEach() on an array of promises. */ declare const forEach: (arr: Promise[], fn: Function, cb: Function, i?: number) => void; export default forEach;