Preview:```ts
type ItemType = "foo" | "bar"
const getType = (): ItemType => "foo"
const t = getType()
const s1 = t === "foo" ? "myapp/foo" : "myapp/bar"
const s2 = `myapp/${t}````
You can choose specific lines to embed by selecting them before copying the link.