import type { Fn } from "@thi.ng/api"; import type { Transducer } from "./api.js"; /** * Helper transducer. Applies given `fn` to each input value, presumably * for side effects. Discards function's result and yields original * inputs. * * @param fn - side effect */ export declare const sideEffect: (fn: Fn) => Transducer; //# sourceMappingURL=side-effect.d.ts.map