Schema.Struct that is optional with defaults, and has option with default members
Gives: "Type '() => undefined' is not assignable to type 'LazyArg<{ readonly Foo: string; }>'" for the
() => undefinedAnd on usage,
Gives: "Argument of type 'optionalWith<Struct<{ Foo: optionalWith<typeof String$, { default: () => string; }>; }>, OptionalOptions<{ readonly Foo: string; }>>' is not assignable to parameter of type 'Schema<unknown, unknown, unknown>'" for the
schemaI want the struct to be optional, and be filled with member defaults if undefined. If it is supplied, any missing members should be get defaults.
TIA
