Skip to content

Commit 021261c

Browse files
committed
chore: Fix lint
1 parent 23482c5 commit 021261c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/converter/types/alias.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class AliasConverter extends ConverterTypeComponent implements TypeConver
8080
}
8181

8282
supportsType(context: Context, type: ts.Type): boolean {
83-
return Boolean(type.aliasSymbol)
83+
return Boolean(type.aliasSymbol);
8484
}
8585

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

0 commit comments

Comments
 (0)