File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -220,8 +220,12 @@ export class Converter extends ChildableComponent<
220
220
}
221
221
222
222
/** @internal */
223
- convertSymbol ( context : Context , symbol : ts . Symbol ) {
224
- convertSymbol ( context , symbol ) ;
223
+ convertSymbol (
224
+ context : Context ,
225
+ symbol : ts . Symbol ,
226
+ exportSymbol ?: ts . Symbol
227
+ ) {
228
+ convertSymbol ( context , symbol , exportSymbol ) ;
225
229
}
226
230
227
231
/**
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ import {
18
18
convertParameterNodes ,
19
19
convertTypeParameterNodes ,
20
20
} from "./factories/signature" ;
21
- import { convertSymbol } from "./symbols" ;
22
21
23
22
export function convertJsDocAlias (
24
23
context : Context ,
@@ -39,7 +38,11 @@ export function convertJsDocAlias(
39
38
// a type alias with an import type.
40
39
const aliasedSymbol = getTypedefReExportTarget ( context , declaration ) ;
41
40
if ( aliasedSymbol ) {
42
- convertSymbol ( context , aliasedSymbol , exportSymbol ?? symbol ) ;
41
+ context . converter . convertSymbol (
42
+ context ,
43
+ aliasedSymbol ,
44
+ exportSymbol ?? symbol
45
+ ) ;
43
46
return ;
44
47
}
45
48
You can’t perform that action at this time.
0 commit comments