import { HKT } from "@tsplus/stdlib/prelude/HKT"; import { Either } from "@tsplus/stdlib/data/Either/definition"; /** * @tsplus type Run */ export interface Run extends HKT.Typeclass { readonly Law: { readonly Run: "Run"; }; readonly either: (fa: HKT.Kind) => HKT.Kind>; } //# sourceMappingURL=Run.d.ts.map