Docs Quickstart Figma Flowbite
1.3.0
Getting started
Customize
Components
API Reference NEW
common / 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

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