Preview:```ts
type ToString = {toString: () => string}
type Foo = {bar: string}
function a(): Foo & ToString {
return {bar: "a", toString: () => "a"}
}
function b(): Foo & ToString {
return {bar: "b"}
}
function c(): Foo {
return {bar: "c", toString: () => "c"}
...```
You can choose specific lines to embed by selecting them before copying the link.