Type aliases should be resolved when extracting type annotations. For instance: ```python Vector = list[float] ``` Currently, `Vector` is extracted, not the original type (i.e. ` list[float]`).
Type aliases should be resolved when extracting type annotations. For instance:
Currently,
Vectoris extracted, not the original type (i.e.list[float]).