c357db1b262c57c33c28ac314bdfe236e4d00b56f7fe88984bd88d6b3601f3254b2b91ef7a652c4373ef1d0c62310f261922f340d2081a59bcbb642e9f1414 133 B

1234
  1. /**
  2. Flatten the type output to improve type hints shown in editors.
  3. */
  4. export type Simplify<T> = {[KeyType in keyof T]: T[KeyType]};