Skip to main content
Module

x/lume/core.ts>DeepPartial

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

Helper to create optional properties recursively

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