import type { Operator } from './index.ts'; /** * Similar to Array.forEach, call forEachFunction for each value in the stream. * @param forEachFunction */ export default function (forEachFunction: (value: Input, index: number) => void): Operator;