TypeAliasItem
ts
export interface TypeAliasItem extends BaseItem {
target?: string;
typeParameters?: TypeParameterInfo[];
}WARNING
Not to be used directly.
Representation of a type alias item in the TypeScript AST. This interface extends BaseItem and includes optional properties for the target type that the alias refers to, as well as an array of type parameters if the type alias is generic. The target property represents the actual type that the alias is referring to, while the typeParameters property provides information about any generic type parameters that may be defined for the type alias, allowing for a more detailed representation of the type alias in the parsed output.