You are viewing API docs for version 1.89.3.

View latest

Home > widget-integration > DeepPartial

DeepPartial type

Signature:

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

References: DeepPartial