Objects of objects of a certain type

I am trying to create an object whose keys can be anything, but values are of a certain type. Each object is essentially a link, that has a certain shape. Then I put them in a wrapper object like this, however each object within is typed indivdually instead of the overall object. The problem is when I try and loop over the wrapper object LINKS, it is not giving me typesaftey. How do i fix this?
17 Replies
erik.gh
erik.gh2y ago
type Links = {
[K: string]: LinkProperties
}
type Links = {
[K: string]: LinkProperties
}
like this?
George
George2y ago
thankyou, but when i tried this, there is no autocomplete when you do LINKS.
erik.gh
erik.gh2y ago
oh then you might just want to use what you already had and add as const to the LINKS object
George
George2y ago
i agree, but the wrapper object still isnt typed as containing only LinkProperties
George
George2y ago
or maybe ts doesnt allow doing that in general, im not sure, im very new to ts
erik.gh
erik.gh2y ago
yeah i understand not sure how to solve it tho
George
George2y ago
all good, thanks for you help anyway
awexis
awexis2y ago
maybe satisfies: but its more like what you had here. https://tsplay.dev/wOLy7N
TS Playground - An online editor for exploring TypeScript and JavaS...
The Playground lets you write TypeScript or JavaScript online in a safe and sharable way.
George
George2y ago
i agree, thanks for the help
whatplan
whatplan2y ago
just wanted to add that the Record type does the same thing as this but tiny bit shorter
type LinksType = Record<string, LinkProperties>
type LinksType = Record<string, LinkProperties>
doesnt change all that much but cool to know
erik.gh
erik.gh2y ago
yeah right thank you but consting an object with dynamic keys is not a thing?
whatplan
whatplan2y ago
const LINKS = {
dashboard,
patients
}

type LinksType = Record<keyof typeof LINKS, LinkProperties>
const LINKS = {
dashboard,
patients
}

type LinksType = Record<keyof typeof LINKS, LinkProperties>
whatplan
whatplan2y ago
hovering LinksType
whatplan
whatplan2y ago
in this case LinksTypes possible keys are defined by the keys of some object you have to define the type somewhere either it can be super generic (Record<string, LinkProperties>) or super specific (as const) but the whole point of a type is to know what your getting in advance so if the type is super dynamic then you might have some challenges getting the level of autocomplete you are hoping for
whatplan
whatplan2y ago
A type cant refer to itself
Want results from more Discord servers?
Add your server