Why is the generic expecting 3 options, although there is only one generic prop?
If I remove
extends queryValueObject = Record<string, never>
I only need 1 options. If I remove extends queryValueObject
, it goes up to 4 options. And if I remove only = Record<string, never>
, it also goes down to 1 required option.3 Replies
Because default parameters for generics aren't implemented yet 😅
https://github.com/arktypeio/arktype/issues/1054
It's a shame there's not a clearer error right now but probably not worth addressing since @ArkShawn is working on it now
Got it - subscribed to the issue - thaaanks 🙂
It's good though that you had the intuition to use TS syntax there- that's the goal