Skip to content

@pinia/root / pinia / _DeepPartial

_DeepPartial<T>

ts
type _DeepPartial<T>: { [K in keyof T]?: _DeepPartial<T[K]> };

Recursive Partial<T>. Used by ['$patch'].

For internal use only

Type Parameters

T

Released under the MIT License.