@@ -24,41 +24,36 @@ function generateDtsTypes(sourceCode: string): string {
24
24
let lastCommentBlock = ''
25
25
26
26
for ( let i = 0 ; i < lines . length ; i ++ ) {
27
- const line = lines [ i ] . trim ( )
27
+ const line = lines [ i ]
28
28
console . log ( `Processing line ${ i + 1 } : ${ line } ` )
29
29
30
- if ( line . startsWith ( '/**' ) || line . startsWith ( '*' ) || line . startsWith ( '*/' ) ) {
31
- if ( line . startsWith ( '/**' ) )
30
+ if ( line . trim ( ) . startsWith ( '/**' ) || line . trim ( ) . startsWith ( '*' ) || line . trim ( ) . startsWith ( '*/' ) ) {
31
+ if ( line . trim ( ) . startsWith ( '/**' ) )
32
32
lastCommentBlock = ''
33
33
lastCommentBlock += `${ line } \n`
34
34
console . log ( 'Comment line added to lastCommentBlock' )
35
35
continue
36
36
}
37
37
38
- if ( line . startsWith ( 'import' ) ) {
38
+ if ( line . trim ( ) . startsWith ( 'import' ) ) {
39
39
const processedImport = processImport ( line )
40
40
imports . push ( processedImport )
41
41
console . log ( `Processed import: ${ processedImport } ` )
42
42
continue
43
43
}
44
44
45
- if ( line . startsWith ( 'export default' ) ) {
46
- defaultExport = `${ line } ;`
45
+ if ( line . trim ( ) . startsWith ( 'export default' ) ) {
46
+ defaultExport = `${ line . trim ( ) } ;`
47
47
console . log ( `Default export found: ${ defaultExport } ` )
48
48
continue
49
49
}
50
50
51
- if ( line . startsWith ( 'export const' ) ) {
52
- isMultiLineDeclaration = true
53
- currentDeclaration = ''
54
- bracketCount = 0
55
- }
56
-
57
- if ( isMultiLineDeclaration ) {
51
+ if ( line . trim ( ) . startsWith ( 'export const' ) || isMultiLineDeclaration ) {
58
52
currentDeclaration += `${ line } \n`
59
53
bracketCount += ( line . match ( / \{ / g) || [ ] ) . length - ( line . match ( / \} / g) || [ ] ) . length
54
+ isMultiLineDeclaration = bracketCount > 0
60
55
61
- if ( bracketCount === 0 || i === lines . length - 1 ) {
56
+ if ( ! isMultiLineDeclaration ) {
62
57
if ( lastCommentBlock ) {
63
58
dtsLines . push ( lastCommentBlock . trimEnd ( ) )
64
59
console . log ( `Comment block added to dtsLines: ${ lastCommentBlock . trimEnd ( ) } ` )
@@ -69,11 +64,11 @@ function generateDtsTypes(sourceCode: string): string {
69
64
dtsLines . push ( processed )
70
65
console . log ( `Processed const declaration added to dtsLines: ${ processed } ` )
71
66
}
72
- isMultiLineDeclaration = false
73
67
currentDeclaration = ''
68
+ bracketCount = 0
74
69
}
75
70
}
76
- else if ( line . startsWith ( 'export' ) ) {
71
+ else if ( line . trim ( ) . startsWith ( 'export' ) ) {
77
72
if ( lastCommentBlock ) {
78
73
dtsLines . push ( lastCommentBlock . trimEnd ( ) )
79
74
console . log ( `Comment block added to dtsLines: ${ lastCommentBlock . trimEnd ( ) } ` )
@@ -125,15 +120,15 @@ function processConstDeclaration(declaration: string): string {
125
120
console . log ( `Processing const declaration: ${ declaration } ` )
126
121
const lines = declaration . split ( '\n' )
127
122
const firstLine = lines [ 0 ]
128
- const name = firstLine . split ( 'export const' ) [ 1 ] . split ( '=' ) [ 0 ] . trim ( )
129
- const type = firstLine . includes ( ':' ) ? firstLine . split ( ':' ) [ 1 ] . split ( '=' ) [ 0 ] . trim ( ) : inferType ( lines . slice ( 1 , - 1 ) )
123
+ const name = firstLine . split ( 'export const' ) [ 1 ] . split ( '=' ) [ 0 ] . trim ( ) . split ( ':' ) [ 0 ] . trim ( )
130
124
131
125
const properties = lines . slice ( 1 , - 1 ) . map ( ( line ) => {
132
- const [ key , value ] = line . split ( ':' ) . map ( part => part . trim ( ) )
133
- return ` ${ key } : ${ value . replace ( ',' , ';' ) } `
126
+ const [ key , ...valueParts ] = line . split ( ':' )
127
+ const value = valueParts . join ( ':' ) . trim ( ) . replace ( ',' , '' )
128
+ return ` ${ key . trim ( ) } : ${ value } ;`
134
129
} ) . join ( '\n' )
135
130
136
- return `export declare const ${ name } : ${ type } {\n${ properties } \n};`
131
+ return `export declare const ${ name } : {\n${ properties } \n};`
137
132
}
138
133
139
134
function processInterfaceDeclaration ( declaration : string ) : string {
@@ -195,8 +190,9 @@ function cleanOutput(output: string): string {
195
190
. replace ( / \{ \s * \} / g, '{}' )
196
191
. replace ( / \s * ; \s * (? = \} | $ ) / g, ';' )
197
192
. replace ( / \n + / g, '\n' )
198
- . replace ( / ; \n \} / g, ';\n }' )
193
+ . replace ( / ; \n \} / g, ';\n}' )
199
194
. replace ( / \{ ; / g, '{' )
195
+ . replace ( / \} ; \n / g, '}\n\n' ) // Add an extra line break after each declaration
200
196
. trim ( )
201
197
console . log ( 'Cleaned output:' , result )
202
198
return result
0 commit comments