Is there a way to access the value of a type like the following:
interface ParsedQs { [key: string]: undefined | string | string[] | ParsedQs | ParsedQs[] }
I am looking for a method to retrieve the ParsedQsValue
type without directly duplicating it from the ParsedQs
definition.