import { type DeepPartial } from "https://deno.land/x/yano3nora_tsutils@v0.29.0/main.ts";
Examples
type User = {
id: number
name: string
profile: {
age: number
email: string
}
}
type User = { id: number name: string profile: { age: number email: string } }
type UserOptional = DeepPartial const u: UserOptional = {}