Preview:```ts
const obj = objCreator()
// needs to be string
const w = obj.one
// ^?
type Obj<T> = {
name: T
}
const getsets = {
one: {
get: function one<T>(this: Obj<T>): T {
return this.name
},
},
}
type SomeType<T extends PropertyDescriptorMap> = {
[K
...```
You can choose specific lines to embed by selecting them before copying the link.