Preview:```ts
const structures = {
foo: {
propOfFoo: "",
},
bar: {
propOfBar: "",
},
}
const getStructure = (id: keyof typeof structures) => {
return structures[id]
}
const structure = getStructure("foo")
structure.foo```
You can choose specific lines to embed by selecting them before copying the link.