Simplifies the type signature of a type.
import * as Types from "effect/Types"type Res = Types.Simplify<{ a: number } & { b: number }> // { a: number; b: number; } Copy
import * as Types from "effect/Types"type Res = Types.Simplify<{ a: number } & { b: number }> // { a: number; b: number; }
2.0.0
Simplifies the type signature of a type.