Skip to content

Commit

Permalink
chore: Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Jul 17, 2020
1 parent 23482c5 commit 021261c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/converter/types/alias.ts
Expand Up @@ -80,7 +80,7 @@ export class AliasConverter extends ConverterTypeComponent implements TypeConver
}

supportsType(context: Context, type: ts.Type): boolean {
return Boolean(type.aliasSymbol)
return Boolean(type.aliasSymbol);
}

convertType(context: Context, type: ts.Type & { aliasSymbol: ts.Symbol }): ReferenceType {
Expand Down

0 comments on commit 021261c

Please sign in to comment.