Preview:```ts
class Foo {
bar: string = "hi"
baz: number = 4
meth() {
console.log(bar) // I wish I didn't have to say this.bar
console.log(baz) // I wish I didn't have to say this.baz
}
}```
You can choose specific lines to embed by selecting them before copying the link.