UNPKG

shapeit

Version:

Object validation tools for Javascript and, specially, Typescript

7 lines (6 loc) 280 B
import { ShapeGuard, GuardType } from '../types/guards'; import { DeepPartial } from '../types/utils'; /** * Creates a shape where all object nested keys are optional */ export default function deepPartial<G extends ShapeGuard>(guard: G): ShapeGuard<DeepPartial<GuardType<G>>>;