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.
2 Replies
For now you would have to use something like this:
We will be able to support
Set<string>
once default values for generics are supported:
https://github.com/arktypeio/arktype/issues/1054GitHub
Default values for generic parameters · Issue #1054 · arktypeio/a...
Would allow parsing the equivalent syntax from TS: const array = type("<t = unknown>", "t[]"); // unknown[] const a = array(); // string[] const b = array("string&quo...
Thanks!