Support for `partial` with `optionalWith(..., { as: "Option" })` in a struct

is there a way to get support for partial with a struct having optionalWith(..., { as: "Option" });

an error is thrown on schema creation:

let S1 = Schema.Struct({ foo: Schema.optionalWith(Schema.String, {as: "Option"}) });
let S1P = Schema.partial(S1);
Was this page helpful?