All Downloads are FREE. Search and download functionalities are using the official Maven repository.

types.partial.ts Maven / Gradle / Ivy


export type DeepPartial = {
  [attr in keyof K]?: K[attr] extends object
      ? DeepPartial
      : K[attr] extends object | null
      ? DeepPartial | null
      : K[attr] extends object | null | undefined
      ? DeepPartial | null | undefined
      : K[attr];
};





© 2015 - 2024 Weber Informatics LLC | Privacy Policy