Hi all — is there a way to attach a decoding default to a standalone/top-level schema? Something that would make Schema.decodeUnknown(mySchema)(undefined) succeed with a default value.
All the existing default combinators (Schema.optional, withDecodingDefault, withDefaults) are property signature combinators that only work inside Schema.Struct. Is there a clean pattern for this at the top level? Basically I have a schema that defines defaults, and I'd like to get back an object/value that represents the schema's defaults.