winterbolt
winterbolt
Aarktype
Created by winterbolt on 3/29/2025 in #questions
How can I validate a `Set` of certain item type?
Thanks!
3 replies
Aarktype
Created by winterbolt on 3/15/2025 in #questions
Is there an equivalent to Zod's `coerce`?
Oh, close! Your tip + the error messages guided me to this:
const Params = type({
sort: type("'name' | 'newest' | 'oldest' | 'modified'").default("newest"),
limit: type("string.integer.parse").to("1 <= number <= 10").default("1"),
page: type("string.integer.parse").to("number >= 0").default("0"),
});
const Params = type({
sort: type("'name' | 'newest' | 'oldest' | 'modified'").default("newest"),
limit: type("string.integer.parse").to("1 <= number <= 10").default("1"),
page: type("string.integer.parse").to("number >= 0").default("0"),
});
It's annoying that I have to use "0" instead of just 0, but it works! 😄 Thanks!
4 replies