( builder: CodeBuilder, imports: ImportDeclarationStructure[], )
| 126 | } |
| 127 | |
| 128 | function addImports( |
| 129 | builder: CodeBuilder, |
| 130 | imports: ImportDeclarationStructure[], |
| 131 | ): void { |
| 132 | if (imports.length > 0) { |
| 133 | builder.addLines(imports.map(formatImport)); |
| 134 | builder.addEmptyLine(); |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | function addPluginDeclarations( |
| 139 | builder: CodeBuilder, |
no test coverage detected