Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/yano3nora_tsutils/main.ts>DeepPartial

TypeScript Utilities as a npm dual package by Deno.
Go to Latest
type alias DeepPartial
import { type DeepPartial } from "https://deno.land/x/yano3nora_tsutils@v0.17.0/main.ts";

Examples

type User = { id: number name: string profile: { age: number email: string } }

type UserOptional = DeepPartial const u: UserOptional = {}

definition: [P in keyof T]?: Partial<T[P]>