Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/yano3nora_tsutils/main.ts>DeepPartial

TypeScript Utilities as a npm dual package by Deno.
Latest
type alias DeepPartial
import { type DeepPartial } from "https://deno.land/x/yano3nora_tsutils@v0.18.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]>