import { type DeepPartial } from "https://deno.land/x/lume@v1.18.2/core/utils.ts";
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@v1.18.2/core/utils.ts";
Helper to create optional properties recursively