export interface IReflectType {
  name: string;
  typeArguments?: IReflectType[];
}
