File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ function extractFunctionSignature(declaration: string): FunctionSignature {
203
203
debugLog ( undefined , 'signature-after-params' , `Remaining content: ${ rest } ` )
204
204
205
205
// Extract return type
206
- const { returnType } = extractReturnType ( rest , cleanDeclaration )
206
+ const { returnType } = extractReturnType ( rest )
207
207
debugLog ( undefined , 'signature-return' , `Extracted return type: ${ returnType } ` )
208
208
209
209
const signature = {
@@ -710,8 +710,9 @@ function createImportTrackingState(): ImportTrackingState {
710
710
valueAliases : new Map ( ) ,
711
711
usedTypes : new Set ( ) ,
712
712
usedValues : new Set ( ) ,
713
- exportedValues : null ,
714
- defaultExportValue : null ,
713
+ exportedValues : new Set ( ) ,
714
+ importSources : new Map ( ) ,
715
+ defaultExportValue : undefined ,
715
716
}
716
717
}
717
718
You can’t perform that action at this time.
0 commit comments