import type { Either } from "@effect-ts/system/Either"; import * as E from "@effect-ts/system/Either"; import type { Identity } from "../../Identity/index.js"; /** * Fold `Identity` through `Either` */ export declare const foldMap_: (M: Identity) => (fa: E.Either, f: (a: A) => M) => M; /** * Fold `Identity` through `Either` */ export declare const foldMap: (M: Identity) => (f: (a: A) => M) => (fa: Either) => M; //# sourceMappingURL=foldMap.d.ts.map