type alias DeepPartialimport { type DeepPartial } from "https://dotland.deno.dev/x/lume@v2.3.3/core/utils/object.ts"; TypeScript helper to create optional properties recursively Type ParametersTdefinition: T extends object ? [P in keyof T]?: DeepPartial<T[P]> : T