PartialItemType

type PartialItemType<Fields, PrimaryKey>: Pick<ItemType<Fields>, PrimaryKey> & Partial<Omit<ItemType<Fields>, PrimaryKey>>;

Just like ItemType

Type parameters

Type parameter
Fields extends FieldsStructure
PrimaryKey extends keyof Fields