import type { Task } from "../Task"; import type { Exit } from "./model"; /** * Applies the function `f` to the successful result of the `Exit` and * returns the result in a new `Exit`. */ export declare const foreachTask_: ( exit: Exit, f: (a: A2) => Task ) => Task>; /** * Applies the function `f` to the successful result of the `Exit` and * returns the result in a new `Exit`. */ export declare const foreachTask: ( f: (a: A2) => Task ) => (exit: Exit) => Task>; export declare const mapTask_: ( exit: Exit, f: (a: A) => Task ) => Task>; export declare const mapTask: ( f: (a: A) => Task ) => (exit: Exit) => Task>; //# sourceMappingURL=task.d.ts.map