import { HKT } from "@tsplus/stdlib/prelude/HKT"; import { AssociativeEither } from "@tsplus/stdlib/prelude/AssociativeEither"; import { None } from "@tsplus/stdlib/prelude/None"; /** * A binary operator that combines two values of types `F` and `F` to * produce an `F>` with an identity value. * * @tsplus type IdentityEither */ export type IdentityEither = AssociativeEither & None; //# sourceMappingURL=IdentityEither.d.ts.map