Home > @skunkteam/types > TypeOfProperties
Translates the type of a Properties-object into the proper TypeScript type to be used in user-code.
Signature:
type TypeOfProperties<T extends Properties> = {
[P in keyof T]: MergeIntersection<TypeOf<T[P]>>;
};
References: Properties, MergeIntersection, TypeOf