cross posting from #typescript

noob question! how would i express this type using arktype syntax?
type MyType = Record<string, unknown>[]
type MyType = Record<string, unknown>[]
i tried:
type(type.Record("string", type.unknown), "[]")
type(type.Record("string", type.unknown), "[]")
but it doesn't work on v2.0.0-rc.30.
9 Replies
ssalbdivad
ssalbdivad3mo ago
I would just chain .array() instead of using the args syntax:
type.Record("string", type.unknown).array()
type.Record("string", type.unknown).array()
What you wrote should work but it seems like a TypeScript bug It does work if you split it up though so some TS issue related to the inner inference:
const dict = type.Record("string", type.unknown)

const t = type(dict, "[]")
const dict = type.Record("string", type.unknown)

const t = type(dict, "[]")
Or this if you prefer I suppose:
const t = type({ "[string]": "unknown" }, "[]")
const t = type({ "[string]": "unknown" }, "[]")
ahrjarrett
ahrjarrettOP3mo ago
thanks for the quick response! hmm, i don't know if splitting it up is an option. let me try .array() i'm doing this programmatically, so i need to make sure i'm able to detect when to use which syntax, in which context will .array() work in all cases?
ssalbdivad
ssalbdivad3mo ago
You're generating ArkType definitions?
ahrjarrett
ahrjarrettOP3mo ago
yeah
ssalbdivad
ssalbdivad3mo ago
Yeah .array() should be the most reliable nothing can really go wrong
ahrjarrett
ahrjarrettOP3mo ago
cool, thank youuu you're the best
ssalbdivad
ssalbdivad3mo ago
As long as you avoid nested type calls or nested tuple expressions you should be pretty safe in general though Stuff like your original definition generally works but TS has weird rules around inference that can sometimes get in the way. As long as you don't have anything like that or nested tuple expressions for a similar reason all roads should lead to Rome or whatever haha
ahrjarrett
ahrjarrettOP2mo ago
hey! do you have time at some point this week to take a look at the arktype generation stuff? would be helpful to know if there's a way i could be doing it better. i think i've got it all working together and playing nice. there's still an edge case involving isDivisibleBy that fast-check caught today, but it took ~100 runs before it found it, so I'm considering cutting an alpha version at creating a ticket for it
ssalbdivad
ssalbdivad2mo ago
Should definitely have some time at least over the next couple weeks! Juggling a lot right now and trying to get caught up on consulting but would love to take a look as soon as I can

Did you find this page helpful?