Type Alias: PartialDeep<T>

Source: 1.0.0-rc.14 · ecc10ae38a81 (uncommitted changes)

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

Defined in: packages/valaxy/types/config.ts:484

Type Parameters

T

T