Preview:```ts
type ExecutorFn = <T>(
a: (value?: T) => void,
rejbect: (reason?: T) => void
) => void
export default class Foo<T> {
private readonly _fn: ExecutorFn<T>
public constructor(executorFn: ExecutorFn<T>) {
this._fn = executorFn
}
}```
You can choose specific lines to embed by selecting them before copying the link.