Home > @skunkteam/types > PropertiesInfo
Properties of an object type, including per-property optionality.
Signature:
type PropertiesInfo<Props extends Properties = Properties> = {
[Key in keyof Props]: PropertyInfo<Props[Key]>;
};
References: Properties, PropertyInfo