Record with specific keys?
I'm trying to do the following:
But understandably I can't provide a
type.Record
specific keys.
I know I need to define an object with specific keys, but is there a way to somehow create this object without having to redeclare the same keys?
Or I guess to ask this in a different way, is there an easy way to create a type where the object has specific keys, but the value for each key is exactly the same? ScanReportsSchema
has specific keys, but the values of those keys is always ScanReportSchema
.2 Replies
Oh apparently I didn't search hard enough: https://discord.com/channels/957797212103016458/1310628677561618513
Object.fromEntries
it is :(Actually, in a lot of other cases we can just normalize this, and we'd like to do it here as well.
It's just a side-effect of the current design that this doesn't work:
https://github.com/arktypeio/arktype/issues/952
GitHub
Allow index node to be parsed from enumerable keys · Issue #952 · a...
Currently, an index signature including a literal key like "a" is an error due to some limitations of how the parser is implemented. There is a normalizeIndexKey function, but it is not u...