如果有
interface ParsedQs { [key: string]: undefined | string | string[] | ParsedQs | ParsedQs[] }
如何获得上述类型的值?我想要下面的
type ParsedQsValue = undefined | string | string[] | ParsedQs | ParsedQs[]
而不显式地从ParsedQs
定义中复制类型。
type ParsedQsValue = ParsedQs[string]