mirror of
https://github.com/sindresorhus/type-fest.git
synced 2026-01-18 14:53:13 +00:00
Co-authored-by: Pelle Wessman <pelle@kodfabrik.se> Co-authored-by: Sindre Sorhus <sindresorhus@gmail.com>
5 lines
133 B
TypeScript
5 lines
133 B
TypeScript
/**
|
|
Flatten the type output to improve type hints shown in editors.
|
|
*/
|
|
export type Simplify<T> = {[KeyType in keyof T]: T[KeyType]};
|