Preview:```ts
interface OptProps<T> {
default: T
description: string
}
class Opt<T> implements OptProps<T> {
default: T
description: string
constructor(cfg: {default: T; description: string}) {
this.default = cfg.defa
...```
You can choose specific lines to embed by selecting them before copying the link.