Skip to content

API Reference / @gtkx/forms / DeepPartial

Type Alias: DeepPartial<T>

DeepPartial<T> = IsPrimitiveLike<T> extends true ? T : T extends BrowserNativeObject | NestedValue ? T : { [K in keyof T]?: ExtractObjects<T[K]> extends never ? T[K] : DeepPartial<T[K]> }

Defined in: node_modules/.pnpm/react-hook-form@7.86.0_react@19.2.8/node_modules/react-hook-form/dist/types/utils.d.ts:23

Type Parameters

T

T

Released under the MPL-2.0 License.