Ignore Parsing and Encoding for Specific Keys in Schema
hi, is it possible to ignore parsing encoding and decoding of some keys? for example i have schema which contains
event
event
property and rest of the property, since event is complex object with all the fucntions refs and all, i need this to be untouched, (event is just there for type purpose), but rest of them should be encoded/decoded
const schema = Schema.Struct({ event: Schema.declare( // this should be left untouched as it is (input): input is DragDropEvent => true ), type: Schema.Literal('dragend', 'dragover')})
const schema = Schema.Struct({ event: Schema.declare( // this should be left untouched as it is (input): input is DragDropEvent => true ), type: Schema.Literal('dragend', 'dragover')})