import { Prettify } from "../prettify";
export type Merge<Object1, Object2> = Prettify<Omit<Object1, keyof Object2> & Object2>;
