When using `Schema.NullishOr`, the schema expects the fields to be present but allows them to be ...
When using
I initially thought, I can just use:
but this isn't the case, as TypeScript still complains that all
NullishOr, is there any way to not pass the attribute to the object literal when using Schema.decode? As an example, I have the following schema:I initially thought, I can just use:
but this isn't the case, as TypeScript still complains that all
NullishOr attributes need to be defined as well. Is there any way to circumvent passing undefined for the respective fields?