type PartialProperties
Type definition for the set of properties passed to ManagedRecord.create().
static
type PartialProperties<TRecord extends ManagedRecord> = Partial<Pick<TRecord, { [k in keyof TRecord]: TRecord[k] extends Function ? never : k; }[keyof TRecord]>>
Related
- class ManagedRecordA class that can be used to describe data models based on ManagedObject.