stack

Home > @infiniteobjects/type-utils > Simplify

Simplify type

Flatten the type output to improve type hints shown in editors.

Signature:

export type Simplify<T> = {
    [KeyType in keyof T]: T[KeyType];
};