frontend/.pnpm-store/v3/files/d7/c357db1b262c57c33c28ac314bdfe236e4d00b56f7fe88984bd88d6b3601f3254b2b91ef7a652c4373ef1d0c62310f261922f340d2081a59bcbb642e9f1414

5 lines
133 B
Plaintext

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