components / TypeAlias

DeepPartial

Generic types:T

Type describing partial object from another, by getting every sub-child of provided type in itself.

Presentation

type DeepPartial = T extends object
  ? {
      [P in keyof T]?: DeepPartial<T[P]>;
    }
  : T;
Flowbite Logo Flowbite

© 2019-2025 Flowbite™ is a registered trademark. All Rights Reserved.