Type alias Optional<T, K>

Optional<T, K>: Omit<T, K> & Partial<Pick<T, K>>

Type helper for making certain fields of an object optional. This is helpful for creating the CreationAttributes from your Attributes for a Model.

Type Parameters

  • T

  • K extends keyof T

Generated using TypeDoc