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