Preview:```ts
///////////////////////////////////////////////////
export type Constructor<T = object, A extends any[] = any[], Static = {}> = (new (...a: A) => T) & Static
export function Constructor<T = object, Static = {}>(Ctor: Constructor<any>): Constructor<T> & Static {
...```
You can choose specific lines to embed by selecting them before copying the link.