/** @inline */ export type DeepNonStrictPartial_ = [T] extends [readonly unknown[]] ? T : { [k in keyof T]?: DeepNonStrictPartial_ | undefined; }; /** @inline */ export type DeepNonStrictPartial = DeepNonStrictPartial_; /** @inline */ export type $DeepNonStrictPartial_ = T extends any ? DeepNonStrictPartial_ : never; /** @inline */ export type $DeepNonStrictPartial = $DeepNonStrictPartial_; //# sourceMappingURL=DeepNonStrictPartial.d.ts.map