import { type DeepPartial } from "https://deno.land/x/lume@v2.4.1/core/utils/object.ts";
TypeScript helper to create optional properties recursively
definition: T extends object ? [P in keyof T]?: DeepPartial<T[P]> : T
import { type DeepPartial } from "https://deno.land/x/lume@v2.4.1/core/utils/object.ts";
TypeScript helper to create optional properties recursively