import { AndThenOrPatch } from "@tsplus/stdlib/data/Differ/OrPatch/definition" /** * Combines two or patches to produce a new or patch that describes applying * their changes sequentially. * * @tsplus static Differ.Or.Patch.Aspects combine * @tsplus pipeable Differ.Or.Patch combine */ export function combine( that: Differ.Or.Patch ) { return ( self: Differ.Or.Patch ): Differ.Or.Patch => new AndThenOrPatch(self, that) }