Preview:```ts
// @lib esnext
import 'node'
class Foo {
__brand = Symbol()
}
class Bar extends Foo {
constructor(public a: string){
super()
}
}
class Baz extends Foo {
constructor(public b: boolean) {
super()
}
}
const exports = {
bar: Bar,
baz: Baz,
...```
You can choose specific lines to embed by selecting them before copying the link.