Preview:```ts
function search(input: unknown[]) {
const foundA = input.find(x => typeof x === "string")
// ^?
const foundB = input.find(
x => typeof x === "string" && x.startsWith("foo")
)
// ^?
}```
You can choose specific lines to embed by selecting them before copying the link.