Passing schemas to functions that are piped
I have a bunch of incoming events that I need to parse and validate. They all have a common structure. I'm wanting to build a more generic system where you can pass what events to "subscribe" to.
This was working great until I had an event that had a
.pipe()
.
Any ideas how I can get around this?
2 Replies
There's not really a simple way to do this directly, no
You could write a custom validator that would check the input of each Type to see if it matched, but not based on pure assignability the way you have it set up now
Appreciate the response thanks!