Skip to content

Commit

Permalink
fix(app): support for Type Reference / WIP
Browse files Browse the repository at this point in the history
fix #1053
  • Loading branch information
vogloblinsky committed Jul 14, 2021
1 parent 0c7a052 commit ee0d9c3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/utils/kind-to-type.ts
Expand Up @@ -21,6 +21,9 @@ export function kindToType(kind: number): string {
case SyntaxKind.FunctionType:
_type = 'function';
break;
case SyntaxKind.TypeReference:
_type = 'type reference';
break;
case SyntaxKind.TypeLiteral:
_type = 'literal type';
break;
Expand Down

0 comments on commit ee0d9c3

Please sign in to comment.