/** Flattens an intersection or complex mapped type into a single object type for better readability. */ export type Simplify = { [K in keyof T]: T[K]; } & {}; //# sourceMappingURL=Simplify.d.ts.map