Preview:```ts
declare function foo(
arg: Record<string, unknown>
): void
function bar(v: unknown) {
if (typeof v === "object" && v != null) {
foo(v)
}
}```
You can choose specific lines to embed by selecting them before copying the link.