type Obj = typeof obj
type Mapped = {
[K in keyof Obj]: Obj[K]
}
type Mapped = {
[K in keyof Obj]: Obj[K]
}
Comments