winterbolt
Aarktype
•Created by winterbolt on 3/29/2025 in #questions
How can I validate a `Set` of certain item type?
Hello,
I am trying to create a schema that validates that a property is a set of strings:
But that gives me an error.
I checked the docs, and nothing seems to cover Maps or Sets.
Am I missing something, or aren't they supported?
Thanks.
3 replies
Aarktype
•Created by winterbolt on 3/15/2025 in #questions
Is there an equivalent to Zod's `coerce`?
Hello, I am trying to convert the following Zod schema to ArkType:
So far, I have this:
But I get errors when using default for
limit
and page
saying: Argument of type 'number' is not assignable to parameter of type '() => never'.ts(2345)
and also the type when hovering over it doesn't seem right:
I assume it's not inferring the types correctly or am I doing something wrong? Is this a right way to emulate Zod's coerce
?4 replies