Preview:```ts
const SYM = Symbol("foo")
const SYM2 = Symbol("bar")
interface X {
[SYM]: true
}
function decorator<
T extends {new (...args: any[]): any}
(base: T) {
return class extends base implements X {
constructor(...args: any[]) {
sup
...```
You can choose specific lines to embed by selecting them before copying the link.