Skip to main content
Module

x/lume/core/utils.ts>DeepPartial

🔥 Static site generator for Deno 🦕
Very Popular
Go to Latest
type alias DeepPartial
import { type DeepPartial } from "https://deno.land/x/lume@v1.15.2/core/utils.ts";

Helper to create optional properties recursively

definition: T extends object ? [P in keyof T]?: DeepPartial<T[P]> : T