Skip to content

Commit

Permalink
fix(app): correct supports ArrayType
Browse files Browse the repository at this point in the history
  • Loading branch information
vogloblinsky committed Jul 14, 2021
1 parent d6d9955 commit 0e02e05
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/compiler/angular/deps/helpers/class-helper.ts
Expand Up @@ -852,6 +852,9 @@ export class ClassHelper {
if (type.typeName) {
_return += this.visitTypeName(type.typeName);
}
if (type.kind === SyntaxKind.RestType && type.type) {
_return += '...' + this.visitType(type.type);
}
if (type.typeArguments) {
_return += '<';
const typeArguments = [];
Expand Down

0 comments on commit 0e02e05

Please sign in to comment.