Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 532 Bytes

types.propertiesinfo.md

File metadata and controls

17 lines (11 loc) · 532 Bytes

Home > @skunkteam/types > PropertiesInfo

PropertiesInfo type

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