5 lines
133 B
Plaintext
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]};
|