Effect CommunityEC
Effect Community3y ago
13 replies
enricopolanski

Combinators for Converting Data to a Specific Schema

Suppose I have data coming in my application like this:
const data = [["foo", "bar", "123", "124"]]

And I want a schema that returns me a type like [string, string, number, number][] what are the combinators I should look at?
Was this page helpful?