A
arktype•2mo ago
Micha

Why is the generic expecting 3 options, although there is only one generic prop?

import { type, scope } from "arktype";

const types = scope({
queryValue: "null | string | number | bigint | boolean",
queryValueObject: {
"[string]": "queryValue",
},

"namedDocument<metadata extends queryValueObject = Record<string, never>>": { // namedDocument has only one generic "metadata"
"data?": "metadata",
},
}).export();

// this requires 3 options, but I would expect only 1 (metadata)
const namedDocument = types.namedDocument("object", "object", "object")
import { type, scope } from "arktype";

const types = scope({
queryValue: "null | string | number | bigint | boolean",
queryValueObject: {
"[string]": "queryValue",
},

"namedDocument<metadata extends queryValueObject = Record<string, never>>": { // namedDocument has only one generic "metadata"
"data?": "metadata",
},
}).export();

// this requires 3 options, but I would expect only 1 (metadata)
const namedDocument = types.namedDocument("object", "object", "object")
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
ssalbdivad
ssalbdivad•2mo ago
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
Micha
MichaOP•2mo ago
Got it - subscribed to the issue - thaaanks 🙂
ssalbdivad
ssalbdivad•2mo ago
It's good though that you had the intuition to use TS syntax there- that's the goal

Did you find this page helpful?