/** * These is an extension of fp-ts/These * @since 0.12.1 */ import * as EI from 'fp-ts/Either'; import * as TH from 'fp-ts/These'; /** * Convert These into an Either. If the These is a Both * a Right will be returned * @category Combinator * @since 0.12.1 */ export declare const absolve: (these: TH.These) => EI.Either; /** * Convert These into an Either. If the These is a Both * a Lef will be returned * @category Combinator * @since 0.12.1 */ export declare const condemn: (these: TH.These) => EI.Either; export * from 'fp-ts/These'; //# sourceMappingURL=These.d.ts.map